[INFO] fetching crate gazelle-parser 0.9.3...
[INFO] fixing gazelle-parser-0.9.3 against try#622891a4e29178280638a6b63a8908bde2c0c854+cargoflags=-Zfix-edition=start=2015 for pr-157817-2
[INFO] extracting crate gazelle-parser 0.9.3 into /workspace/builds/worker-7-tc1/source
[INFO] started tweaking crates.io crate gazelle-parser 0.9.3
[INFO] removed 0 missing examples
[INFO] removed 0 missing tests
[INFO] finished tweaking crates.io crate gazelle-parser 0.9.3
[INFO] tweaked toml for crates.io crate gazelle-parser 0.9.3 written to /workspace/builds/worker-7-tc1/source/Cargo.toml
[INFO] validating manifest of crates.io crate gazelle-parser 0.9.3 on toolchain 622891a4e29178280638a6b63a8908bde2c0c854
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }`
[INFO] crate crates.io crate gazelle-parser 0.9.3 already has a lockfile, it will not be regenerated
[INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/source:/opt/rustwide/workdir:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-m" "1610612736" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:3a6becf2bc8dde7f3fa57ede90e4f284e72d296796fc446bbb1e2c7cc0530151" "sleep" "infinity", kill_on_drop: false }`
[INFO] [stdout] 3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65
[INFO] running `Command { std: "docker" "start" "3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-w" "/opt/rustwide/workdir" "--user" "0:0" "3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "inspect" "3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "exec" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=" "-e" "RUSTDOCFLAGS=" "-w" "/opt/rustwide/workdir" "--user" "0:0" "3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65" "/opt/rustwide/cargo-home/bin/cargo" "+622891a4e29178280638a6b63a8908bde2c0c854" "fix" "--allow-no-vcs" "--allow-dirty" "--frozen" "--all" "--all-targets" "--message-format=json" "-Zfix-edition=start=2015", kill_on_drop: false }`
[INFO] [stderr]     Checking gazelle-parser v0.9.3 (/opt/rustwide/workdir)
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]  --> examples/auto_lexer.rs:7:5
[INFO] [stdout]   |
[INFO] [stdout] 7 | use gazelle_macros::gazelle;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]  --> examples/expr_eval.rs:9:5
[INFO] [stdout]   |
[INFO] [stdout] 9 | use gazelle_macros::gazelle;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:42:13
[INFO] [stdout]    |
[INFO] [stdout] 42 |             calc::Expr::Add(l, r) => l + r,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]  --> examples/python/main.rs:8:5
[INFO] [stdout]   |
[INFO] [stdout] 8 | use gazelle_macros::gazelle;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:43:13
[INFO] [stdout]    |
[INFO] [stdout] 43 |             calc::Expr::Term(t) => t,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]  --> tests/fallible_actions.rs:3:5
[INFO] [stdout]   |
[INFO] [stdout] 3 | use gazelle_macros::gazelle;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]  --> examples/hello.rs:7:5
[INFO] [stdout]   |
[INFO] [stdout] 7 | use gazelle_macros::gazelle;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]  --> tests/precedence_equivalence.rs:7:5
[INFO] [stdout]   |
[INFO] [stdout] 7 | use gazelle_macros::gazelle;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]   --> examples/runtime_grammar.rs:27:5
[INFO] [stdout]    |
[INFO] [stdout] 27 | use gazelle_macros::gazelle;
[INFO] [stdout]    |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]   --> examples/c11/main.rs:10:5
[INFO] [stdout]    |
[INFO] [stdout] 10 | use gazelle_macros::gazelle;
[INFO] [stdout]    |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]  --> examples/modifiers.rs:5:5
[INFO] [stdout]   |
[INFO] [stdout] 5 | use gazelle_macros::gazelle;
[INFO] [stdout]   |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]   |
[INFO] [stdout]   = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:57:13
[INFO] [stdout]    |
[INFO] [stdout] 57 |             dynamic::Expr::Binop(l, op, r) => Expr::binop(l, op, r),
[INFO] [stdout]    |             ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:58:13
[INFO] [stdout]    |
[INFO] [stdout] 58 |             dynamic::Expr::Num(n) => Expr::Num(n),
[INFO] [stdout]    |             ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0432]: unresolved import `gazelle_macros`
[INFO] [stdout]   --> examples/c11_calculator.rs:11:5
[INFO] [stdout]    |
[INFO] [stdout] 11 | use gazelle_macros::gazelle;
[INFO] [stdout]    |     ^^^^^^^^^^^^^^ use of unresolved module or unlinked crate `gazelle_macros`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `gazelle_macros`, use `cargo add gazelle_macros` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:36:13
[INFO] [stdout]    |
[INFO] [stdout] 36 |             sum::Expr::Add(left, right) => left + right,
[INFO] [stdout]    |             ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:146:13
[INFO] [stdout]     |
[INFO] [stdout] 146 |             fixed::Expr::Add(l, r) => Expr::binop(l, '+', r),
[INFO] [stdout]     |             ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:27:13
[INFO] [stdout]    |
[INFO] [stdout] 27 |             fallible::Expr::Num(n) => n,
[INFO] [stdout]    |             ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:147:13
[INFO] [stdout]     |
[INFO] [stdout] 147 |             fixed::Expr::Term(t) => t,
[INFO] [stdout]     |             ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:37:13
[INFO] [stdout]    |
[INFO] [stdout] 37 |             sum::Expr::Num(n) => n,
[INFO] [stdout]    |             ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:164:13
[INFO] [stdout]     |
[INFO] [stdout] 164 |             fixed::Factor::Pow(l, r) => Expr::binop(l, '^', r),
[INFO] [stdout]     |             ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:165:13
[INFO] [stdout]     |
[INFO] [stdout] 165 |             fixed::Factor::Base(b) => b,
[INFO] [stdout]     |             ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:173:13
[INFO] [stdout]     |
[INFO] [stdout] 173 |             fixed::Base::Num(n) => Expr::Num(n),
[INFO] [stdout]     |             ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `python` in this scope
[INFO] [stdout]    --> examples/python/main.rs:581:22
[INFO] [stdout]     |
[INFO] [stdout] 581 |     let mut parser = python::Parser::<PyActions>::new();
[INFO] [stdout]     |                      ^^^^^^ use of unresolved module or unlinked crate `python`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `python`, use `cargo add python` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 581 -     let mut parser = python::Parser::<PyActions>::new();
[INFO] [stdout] 581 +     let mut parser = Parser::<PyActions>::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:65:22
[INFO] [stdout]    |
[INFO] [stdout] 65 |     let mut parser = dynamic::Parser::<DynBuilder>::new();
[INFO] [stdout]    |                      ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]    |
[INFO] [stdout]  6 + use gazelle::Parser;
[INFO] [stdout]    |
[INFO] [stdout]  6 + use gazelle::regex::Parser;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 65 -     let mut parser = dynamic::Parser::<DynBuilder>::new();
[INFO] [stdout] 65 +     let mut parser = Parser::<DynBuilder>::new();
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:91:38
[INFO] [stdout]    |
[INFO] [stdout] 91 |             '0'..='9' => tokens.push(dynamic::Terminal::Num(c as i32 - '0' as i32)),
[INFO] [stdout]    |                                      ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  6 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 91 -             '0'..='9' => tokens.push(dynamic::Terminal::Num(c as i32 - '0' as i32)),
[INFO] [stdout] 91 +             '0'..='9' => tokens.push(Terminal::Num(c as i32 - '0' as i32)),
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:92:32
[INFO] [stdout]    |
[INFO] [stdout] 92 |             '+' => tokens.push(dynamic::Terminal::Op('+', Precedence::Left(1))),
[INFO] [stdout]    |                                ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  6 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 92 -             '+' => tokens.push(dynamic::Terminal::Op('+', Precedence::Left(1))),
[INFO] [stdout] 92 +             '+' => tokens.push(Terminal::Op('+', Precedence::Left(1))),
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:93:32
[INFO] [stdout]    |
[INFO] [stdout] 93 |             '*' => tokens.push(dynamic::Terminal::Op('*', Precedence::Left(2))),
[INFO] [stdout]    |                                ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  6 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 93 -             '*' => tokens.push(dynamic::Terminal::Op('*', Precedence::Left(2))),
[INFO] [stdout] 93 +             '*' => tokens.push(Terminal::Op('*', Precedence::Left(2))),
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:94:32
[INFO] [stdout]    |
[INFO] [stdout] 94 |             '^' => tokens.push(dynamic::Terminal::Op('^', Precedence::Right(3))),
[INFO] [stdout]    |                                ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  6 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 94 -             '^' => tokens.push(dynamic::Terminal::Op('^', Precedence::Right(3))),
[INFO] [stdout] 94 +             '^' => tokens.push(Terminal::Op('^', Precedence::Right(3))),
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:155:13
[INFO] [stdout]     |
[INFO] [stdout] 155 |             fixed::Term::Mul(l, r) => Expr::binop(l, '*', r),
[INFO] [stdout]     |             ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::Term;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Term`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 155 -             fixed::Term::Mul(l, r) => Expr::binop(l, '*', r),
[INFO] [stdout] 155 +             Term::Mul(l, r) => Expr::binop(l, '*', r),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:156:13
[INFO] [stdout]     |
[INFO] [stdout] 156 |             fixed::Term::Factor(f) => f,
[INFO] [stdout]     |             ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::Term;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Term`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 156 -             fixed::Term::Factor(f) => f,
[INFO] [stdout] 156 +             Term::Factor(f) => f,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:180:22
[INFO] [stdout]     |
[INFO] [stdout] 180 |     let mut parser = fixed::Parser::<FixedBuilder>::new();
[INFO] [stdout]     |                      ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 180 -     let mut parser = fixed::Parser::<FixedBuilder>::new();
[INFO] [stdout] 180 +     let mut parser = Parser::<FixedBuilder>::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:206:38
[INFO] [stdout]     |
[INFO] [stdout] 206 |             '0'..='9' => tokens.push(fixed::Terminal::Num(c as i32 - '0' as i32)),
[INFO] [stdout]     |                                      ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 206 -             '0'..='9' => tokens.push(fixed::Terminal::Num(c as i32 - '0' as i32)),
[INFO] [stdout] 206 +             '0'..='9' => tokens.push(Terminal::Num(c as i32 - '0' as i32)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:207:32
[INFO] [stdout]     |
[INFO] [stdout] 207 |             '+' => tokens.push(fixed::Terminal::Plus),
[INFO] [stdout]     |                                ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 207 -             '+' => tokens.push(fixed::Terminal::Plus),
[INFO] [stdout] 207 +             '+' => tokens.push(Terminal::Plus),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:208:32
[INFO] [stdout]     |
[INFO] [stdout] 208 |             '*' => tokens.push(fixed::Terminal::Star),
[INFO] [stdout]     |                                ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 208 -             '*' => tokens.push(fixed::Terminal::Star),
[INFO] [stdout] 208 +             '*' => tokens.push(Terminal::Star),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:209:32
[INFO] [stdout]     |
[INFO] [stdout] 209 |             '^' => tokens.push(fixed::Terminal::Caret),
[INFO] [stdout]     |                                ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   6 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 209 -             '^' => tokens.push(fixed::Terminal::Caret),
[INFO] [stdout] 209 +             '^' => tokens.push(Terminal::Caret),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:35:9
[INFO] [stdout]    |
[INFO] [stdout] 35 |         c11::Declarator::DeclDirect(dd) | c11::Declarator::DeclPtr(_, dd) => {
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:61:13
[INFO] [stdout]    |
[INFO] [stdout] 61 |             sum::Lexed::Token(t) => t,
[INFO] [stdout]    |             ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:60:13
[INFO] [stdout]    |
[INFO] [stdout] 60 |             calc::Factor::Num(n) => n,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:35:43
[INFO] [stdout]    |
[INFO] [stdout] 35 |         c11::Declarator::DeclDirect(dd) | c11::Declarator::DeclPtr(_, dd) => {
[INFO] [stdout]    |                                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:62:13
[INFO] [stdout]    |
[INFO] [stdout] 62 |             sum::Lexed::Raw(sum::RawToken::Num) => {
[INFO] [stdout]    |             ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:61:13
[INFO] [stdout]    |
[INFO] [stdout] 61 |             calc::Factor::Paren(e) => e,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:48:6
[INFO] [stdout]    |
[INFO] [stdout] 48 | impl dynamic::Types for DynBuilder {
[INFO] [stdout]    |      ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:54:22
[INFO] [stdout]    |
[INFO] [stdout] 54 | impl gazelle::Action<dynamic::Expr<Self>> for DynBuilder {
[INFO] [stdout]    |                      ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:55:31
[INFO] [stdout]    |
[INFO] [stdout] 55 |     fn build(&mut self, node: dynamic::Expr<Self>) -> Result<Expr, Self::Error> {
[INFO] [stdout]    |                               ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `dynamic` in this scope
[INFO] [stdout]   --> tests/precedence_equivalence.rs:86:43
[INFO] [stdout]    |
[INFO] [stdout] 86 | fn lex_dynamic(input: &str) -> Result<Vec<dynamic::Terminal<DynBuilder>>, String> {
[INFO] [stdout]    |                                           ^^^^^^^ use of unresolved module or unlinked crate `dynamic`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `dynamic`, use `cargo add dynamic` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:135:6
[INFO] [stdout]     |
[INFO] [stdout] 135 | impl fixed::Types for FixedBuilder {
[INFO] [stdout]     |      ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:143:22
[INFO] [stdout]     |
[INFO] [stdout] 143 | impl gazelle::Action<fixed::Expr<Self>> for FixedBuilder {
[INFO] [stdout]     |                      ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:144:31
[INFO] [stdout]     |
[INFO] [stdout] 144 |     fn build(&mut self, node: fixed::Expr<Self>) -> Result<Expr, Self::Error> {
[INFO] [stdout]     |                               ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:152:22
[INFO] [stdout]     |
[INFO] [stdout] 152 | impl gazelle::Action<fixed::Term<Self>> for FixedBuilder {
[INFO] [stdout]     |                      ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:153:31
[INFO] [stdout]     |
[INFO] [stdout] 153 |     fn build(&mut self, node: fixed::Term<Self>) -> Result<Expr, Self::Error> {
[INFO] [stdout]     |                               ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:161:22
[INFO] [stdout]     |
[INFO] [stdout] 161 | impl gazelle::Action<fixed::Factor<Self>> for FixedBuilder {
[INFO] [stdout]     |                      ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:162:31
[INFO] [stdout]     |
[INFO] [stdout] 162 |     fn build(&mut self, node: fixed::Factor<Self>) -> Result<Expr, Self::Error> {
[INFO] [stdout]     |                               ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:170:22
[INFO] [stdout]     |
[INFO] [stdout] 170 | impl gazelle::Action<fixed::Base<Self>> for FixedBuilder {
[INFO] [stdout]     |                      ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:171:31
[INFO] [stdout]     |
[INFO] [stdout] 171 |     fn build(&mut self, node: fixed::Base<Self>) -> Result<Expr, Self::Error> {
[INFO] [stdout]     |                               ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fixed` in this scope
[INFO] [stdout]    --> tests/precedence_equivalence.rs:201:41
[INFO] [stdout]     |
[INFO] [stdout] 201 | fn lex_fixed(input: &str) -> Result<Vec<fixed::Terminal<FixedBuilder>>, String> {
[INFO] [stdout]     |                                         ^^^^^ use of unresolved module or unlinked crate `fixed`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `fixed`, use `cargo add fixed` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (test "precedence_equivalence") due to 34 previous errors
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:62:29
[INFO] [stdout]    |
[INFO] [stdout] 62 |             sum::Lexed::Raw(sum::RawToken::Num) => {
[INFO] [stdout]    |                             ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:46:22
[INFO] [stdout]    |
[INFO] [stdout] 46 |     let mut parser = sum::Parser::<Eval>::new();
[INFO] [stdout]    |                      ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::Parser;
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::regex::Parser;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 46 -     let mut parser = sum::Parser::<Eval>::new();
[INFO] [stdout] 46 +     let mut parser = Parser::<Eval>::new();
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:64:17
[INFO] [stdout]    |
[INFO] [stdout] 64 |                 sum::Terminal::Num(n)
[INFO] [stdout]    |                 ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 64 -                 sum::Terminal::Num(n)
[INFO] [stdout] 64 +                 Terminal::Num(n)
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:28:6
[INFO] [stdout]    |
[INFO] [stdout] 28 | impl sum::Types for Eval {
[INFO] [stdout]    |      ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:33:22
[INFO] [stdout]    |
[INFO] [stdout] 33 | impl gazelle::Action<sum::Expr<Self>> for Eval {
[INFO] [stdout]    |                      ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:34:31
[INFO] [stdout]    |
[INFO] [stdout] 34 |     fn build(&mut self, node: sum::Expr<Self>) -> Result<i64, Self::Error> {
[INFO] [stdout]    |                               ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `sum` in this scope
[INFO] [stdout]   --> examples/hello.rs:54:29
[INFO] [stdout]    |
[INFO] [stdout] 54 |         let (lexed, span) = sum::next_token(&mut src).ok_or_else(|| {
[INFO] [stdout]    |                             ^^^ use of unresolved module or unlinked crate `sum`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `sum`, use `cargo add sum` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:88:30
[INFO] [stdout]    |
[INFO] [stdout] 88 |     assert!(matches!(result, fallible::Expr::Num(42)));
[INFO] [stdout]    |                              ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:34:22
[INFO] [stdout]    |
[INFO] [stdout] 34 |     let mut parser = fallible::Parser::<CheckActions>::new();
[INFO] [stdout]    |                      ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::Parser;
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::regex::Parser;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 34 -     let mut parser = fallible::Parser::<CheckActions>::new();
[INFO] [stdout] 34 +     let mut parser = Parser::<CheckActions>::new();
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:38:15
[INFO] [stdout]    |
[INFO] [stdout] 38 |         .push(fallible::Terminal::Num(42), &mut actions)
[INFO] [stdout]    |               ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 38 -         .push(fallible::Terminal::Num(42), &mut actions)
[INFO] [stdout] 38 +         .push(Terminal::Num(42), &mut actions)
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:58:22
[INFO] [stdout]    |
[INFO] [stdout] 58 |     let mut parser = fallible::Parser::<DiscardActions>::new();
[INFO] [stdout]    |                      ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::Parser;
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::regex::Parser;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 58 -     let mut parser = fallible::Parser::<DiscardActions>::new();
[INFO] [stdout] 58 +     let mut parser = Parser::<DiscardActions>::new();
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:43:9
[INFO] [stdout]    |
[INFO] [stdout] 43 |         c11::DirectDeclarator::DdIdent(name) => name,
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:62:15
[INFO] [stdout]    |
[INFO] [stdout] 62 |         .push(fallible::Terminal::Num(42), &mut actions)
[INFO] [stdout]    |               ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 62 -         .push(fallible::Terminal::Num(42), &mut actions)
[INFO] [stdout] 62 +         .push(Terminal::Num(42), &mut actions)
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:81:22
[INFO] [stdout]    |
[INFO] [stdout] 81 |     let mut parser = fallible::Parser::<CstActions>::new();
[INFO] [stdout]    |                      ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::Parser;
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::regex::Parser;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 81 -     let mut parser = fallible::Parser::<CstActions>::new();
[INFO] [stdout] 81 +     let mut parser = Parser::<CstActions>::new();
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:85:15
[INFO] [stdout]    |
[INFO] [stdout] 85 |         .push(fallible::Terminal::Num(42), &mut actions)
[INFO] [stdout]    |               ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  3 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 85 -         .push(fallible::Terminal::Num(42), &mut actions)
[INFO] [stdout] 85 +         .push(Terminal::Num(42), &mut actions)
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:19:6
[INFO] [stdout]    |
[INFO] [stdout] 19 | impl fallible::Types for CheckActions {
[INFO] [stdout]    |      ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:24:22
[INFO] [stdout]    |
[INFO] [stdout] 24 | impl gazelle::Action<fallible::Expr<Self>> for CheckActions {
[INFO] [stdout]    |                      ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:25:31
[INFO] [stdout]    |
[INFO] [stdout] 25 |     fn build(&mut self, node: fallible::Expr<Self>) -> Result<i32, Self::Error> {
[INFO] [stdout]    |                               ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:51:6
[INFO] [stdout]    |
[INFO] [stdout] 51 | impl fallible::Types for DiscardActions {
[INFO] [stdout]    |      ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:74:6
[INFO] [stdout]    |
[INFO] [stdout] 74 | impl fallible::Types for CstActions {
[INFO] [stdout]    |      ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `fallible` in this scope
[INFO] [stdout]   --> tests/fallible_actions.rs:76:17
[INFO] [stdout]    |
[INFO] [stdout] 76 |     type Expr = fallible::Expr<Self>;
[INFO] [stdout]    |                 ^^^^^^^^ use of unresolved module or unlinked crate `fallible`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `fallible`, use `cargo add fallible` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `python` in this scope
[INFO] [stdout]   --> examples/python/main.rs:64:6
[INFO] [stdout]    |
[INFO] [stdout] 64 | impl python::Types for PyActions {
[INFO] [stdout]    |      ^^^^^^ use of unresolved module or unlinked crate `python`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `python`, use `cargo add python` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `python` in this scope
[INFO] [stdout]    --> examples/python/main.rs:155:12
[INFO] [stdout]     |
[INFO] [stdout] 155 | type Tok = python::Terminal<PyActions>;
[INFO] [stdout]     |            ^^^^^^ use of unresolved module or unlinked crate `python`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `python`, use `cargo add python` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `python` in this scope
[INFO] [stdout]    --> examples/python/main.rs:156:15
[INFO] [stdout]     |
[INFO] [stdout] 156 | type Parser = python::Parser<PyActions>;
[INFO] [stdout]     |               ^^^^^^ use of unresolved module or unlinked crate `python`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `python`, use `cargo add python` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:235:13
[INFO] [stdout]     |
[INFO] [stdout] 235 |             c11_calc::Assoc::Left => Precedence::Left,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:44:9
[INFO] [stdout]    |
[INFO] [stdout] 44 |         c11::DirectDeclarator::DdParen(_, d) => declarator_name(d),
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (example "python") due to 5 previous errors
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:45:9
[INFO] [stdout]    |
[INFO] [stdout] 45 |         c11::DirectDeclarator::DdOther(dd, ..)
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:78:17
[INFO] [stdout]    |
[INFO] [stdout] 78 |                 calc::Lexed::Token(t) => t,
[INFO] [stdout]    |                 ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:51:13
[INFO] [stdout]    |
[INFO] [stdout] 51 |         let list::Items::Items(items) = node;
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:46:11
[INFO] [stdout]    |
[INFO] [stdout] 46 |         | c11::DirectDeclarator::DdOther1(dd, ..)
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:236:13
[INFO] [stdout]     |
[INFO] [stdout] 236 |             c11_calc::Assoc::Right => Precedence::Right,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:47:11
[INFO] [stdout]    |
[INFO] [stdout] 47 |         | c11::DirectDeclarator::DdOther2(dd, ..)
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:48:11
[INFO] [stdout]    |
[INFO] [stdout] 48 |         | c11::DirectDeclarator::DdOther3(dd, ..)
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:49:11
[INFO] [stdout]    |
[INFO] [stdout] 49 |         | c11::DirectDeclarator::DdFunc(dd, _)
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:50:11
[INFO] [stdout]    |
[INFO] [stdout] 50 |         | c11::DirectDeclarator::DdOtherKr(dd, ..) => direct_declarator_name(dd),
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:79:17
[INFO] [stdout]    |
[INFO] [stdout] 79 |                 calc::Lexed::Raw(calc::RawToken::Num) => {
[INFO] [stdout]    |                 ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:57:9
[INFO] [stdout]    |
[INFO] [stdout] 57 |         c11::Declarator::DeclDirect(dd) | c11::Declarator::DeclPtr(_, dd) => dd_param_ctx_take(dd),
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:57:43
[INFO] [stdout]    |
[INFO] [stdout] 57 |         c11::Declarator::DeclDirect(dd) | c11::Declarator::DeclPtr(_, dd) => dd_param_ctx_take(dd),
[INFO] [stdout]    |                                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:63:9
[INFO] [stdout]    |
[INFO] [stdout] 63 |         c11::DirectDeclarator::DdIdent(_) => None,
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:51:13
[INFO] [stdout]    |
[INFO] [stdout] 51 |             expr::Binop::Op(c) => c,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (test "fallible_actions") due to 15 previous errors
[INFO] [stderr] error: could not compile `gazelle-parser` (example "hello") due to 12 previous errors
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:64:9
[INFO] [stdout]    |
[INFO] [stdout] 64 |         c11::DirectDeclarator::DdParen(_, d) => declarator_param_ctx_take(d),
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:79:34
[INFO] [stdout]    |
[INFO] [stdout] 79 |                 calc::Lexed::Raw(calc::RawToken::Num) => {
[INFO] [stdout]    |                                  ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:66:9
[INFO] [stdout]    |
[INFO] [stdout] 66 |         c11::DirectDeclarator::DdFunc(inner, Node(scoped)) => {
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:51:13
[INFO] [stdout]    |
[INFO] [stdout] 51 |             calc::Term::Mul(l, r) => l * r,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::Term;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Term`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 51 -             calc::Term::Mul(l, r) => l * r,
[INFO] [stdout] 51 +             Term::Mul(l, r) => l * r,
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:52:13
[INFO] [stdout]    |
[INFO] [stdout] 52 |             calc::Term::Factor(f) => f,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::Term;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Term`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 52 -             calc::Term::Factor(f) => f,
[INFO] [stdout] 52 +             Term::Factor(f) => f,
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:68:22
[INFO] [stdout]    |
[INFO] [stdout] 68 |     let mut parser = calc::Parser::<Eval>::new();
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::Parser;
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::regex::Parser;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 68 -     let mut parser = calc::Parser::<Eval>::new();
[INFO] [stdout] 68 +     let mut parser = Parser::<Eval>::new();
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:80:21
[INFO] [stdout]    |
[INFO] [stdout] 80 |                     calc::Terminal::Num(input[span].parse::<i64>().unwrap())
[INFO] [stdout]    |                     ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  7 + use gazelle::regex::Terminal;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 80 -                     calc::Terminal::Num(input[span].parse::<i64>().unwrap())
[INFO] [stdout] 80 +                     Terminal::Num(input[span].parse::<i64>().unwrap())
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:245:13
[INFO] [stdout]     |
[INFO] [stdout] 245 |             c11_calc::Stmt::DefOp(op, func, assoc, prec) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:32:6
[INFO] [stdout]    |
[INFO] [stdout] 32 | impl calc::Types for Eval {
[INFO] [stdout]    |      ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:39:22
[INFO] [stdout]    |
[INFO] [stdout] 39 | impl gazelle::Action<calc::Expr<Self>> for Eval {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:40:31
[INFO] [stdout]    |
[INFO] [stdout] 40 |     fn build(&mut self, node: calc::Expr<Self>) -> Result<i64, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:48:22
[INFO] [stdout]    |
[INFO] [stdout] 48 | impl gazelle::Action<calc::Term<Self>> for Eval {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:49:31
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn build(&mut self, node: calc::Term<Self>) -> Result<i64, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:57:22
[INFO] [stdout]    |
[INFO] [stdout] 57 | impl gazelle::Action<calc::Factor<Self>> for Eval {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:58:31
[INFO] [stdout]    |
[INFO] [stdout] 58 |     fn build(&mut self, node: calc::Factor<Self>) -> Result<i64, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `calc` in this scope
[INFO] [stdout]   --> examples/auto_lexer.rs:76:48
[INFO] [stdout]    |
[INFO] [stdout] 76 |         let tok = if let Some((lexed, span)) = calc::next_token(&mut scanner) {
[INFO] [stdout]    |                                                ^^^^ use of unresolved module or unlinked crate `calc`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `calc`, use `cargo add calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:256:13
[INFO] [stdout]     |
[INFO] [stdout] 256 |             c11_calc::Stmt::Print(e) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (example "auto_lexer") due to 20 previous errors
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:68:21
[INFO] [stdout]    |
[INFO] [stdout] 68 |                 let c11::ScopedParameterTypeList::ScopedParams(_, ref mut ptl) = *scoped;
[INFO] [stdout]    |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:59:13
[INFO] [stdout]    |
[INFO] [stdout] 59 |             list::Semis::Semis(semis) => Ok(semis.len()),
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:69:21
[INFO] [stdout]    |
[INFO] [stdout] 69 |                 let c11::ParameterTypeList::ParamCtx(_, _, ref mut ctx) = *ptl;
[INFO] [stdout]    |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:73:9
[INFO] [stdout]    |
[INFO] [stdout] 73 |         c11::DirectDeclarator::DdOther(dd, ..)
[INFO] [stdout]    |         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:269:13
[INFO] [stdout]     |
[INFO] [stdout] 269 |             c11_calc::PrimaryExpression::Num(n) => Val::Rval(n),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:74:11
[INFO] [stdout]    |
[INFO] [stdout] 74 |         | c11::DirectDeclarator::DdOther1(dd, ..)
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:270:13
[INFO] [stdout]     |
[INFO] [stdout] 270 |             c11_calc::PrimaryExpression::Ident(name) => Val::Lval(self.slot(&name)),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:75:11
[INFO] [stdout]    |
[INFO] [stdout] 75 |         | c11::DirectDeclarator::DdOther2(dd, ..)
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:76:11
[INFO] [stdout]    |
[INFO] [stdout] 76 |         | c11::DirectDeclarator::DdOther3(dd, ..)
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:77:11
[INFO] [stdout]    |
[INFO] [stdout] 77 |         | c11::DirectDeclarator::DdOtherKr(dd, ..) => dd_param_ctx_take(dd),
[INFO] [stdout]    |           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:271:13
[INFO] [stdout]     |
[INFO] [stdout] 271 |             c11_calc::PrimaryExpression::Paren(e) => e,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:67:13
[INFO] [stdout]    |
[INFO] [stdout] 67 |             list::Item::WithComma(n) => n,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:68:13
[INFO] [stdout]    |
[INFO] [stdout] 68 |             list::Item::WithoutComma(n) => n,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:280:13
[INFO] [stdout]     |
[INFO] [stdout] 280 |             c11_calc::PostfixExpression::Primary(e) => e,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:281:13
[INFO] [stdout]     |
[INFO] [stdout] 281 |             c11_calc::PostfixExpression::Index(arr, idx) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:286:13
[INFO] [stdout]     |
[INFO] [stdout] 286 |             c11_calc::PostfixExpression::Call0(_func) => Val::Rval(0),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:287:13
[INFO] [stdout]     |
[INFO] [stdout] 287 |             c11_calc::PostfixExpression::Call(func, args) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:301:13
[INFO] [stdout]     |
[INFO] [stdout] 301 |             c11_calc::PostfixExpression::Postinc(e) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:308:13
[INFO] [stdout]     |
[INFO] [stdout] 308 |             c11_calc::PostfixExpression::Postdec(e) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:75:13
[INFO] [stdout]    |
[INFO] [stdout] 75 |         let list::Nums::Nums(nums) = node;
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:326:13
[INFO] [stdout]     |
[INFO] [stdout] 326 |             c11_calc::ArgumentExpressionList::Single(e) => vec![e],
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:327:13
[INFO] [stdout]     |
[INFO] [stdout] 327 |             c11_calc::ArgumentExpressionList::Append(mut list, e) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:131:13
[INFO] [stdout]     |
[INFO] [stdout] 131 |         let token_format::Sentence::Sentence(parser) = node;
[INFO] [stdout]     |             ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:339:13
[INFO] [stdout]     |
[INFO] [stdout] 339 |             c11_calc::UnaryExpression::Postfix(e) => e,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:340:13
[INFO] [stdout]     |
[INFO] [stdout] 340 |             c11_calc::UnaryExpression::Preinc(e) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:345:13
[INFO] [stdout]     |
[INFO] [stdout] 345 |             c11_calc::UnaryExpression::Predec(e) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:350:13
[INFO] [stdout]     |
[INFO] [stdout] 350 |             c11_calc::UnaryExpression::Addr(e) => match e {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:52:13
[INFO] [stdout]    |
[INFO] [stdout] 52 |             expr::Binop::Minus => '-',
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:70:13
[INFO] [stdout]    |
[INFO] [stdout] 70 |             expr::Expr::Term(t) => t,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:71:13
[INFO] [stdout]    |
[INFO] [stdout] 71 |             expr::Expr::Binop(l, op, r) => match op {
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:172:13
[INFO] [stdout]     |
[INFO] [stdout] 172 |             expr::Lexed::Token(t) => t,
[INFO] [stdout]     |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:173:13
[INFO] [stdout]     |
[INFO] [stdout] 173 |             expr::Lexed::Raw(raw) => match raw {
[INFO] [stdout]     |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:174:17
[INFO] [stdout]     |
[INFO] [stdout] 174 |                 expr::RawToken::Num => expr::Terminal::Num(input[span].parse().unwrap()),
[INFO] [stdout]     |                 ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:354:13
[INFO] [stdout]     |
[INFO] [stdout] 354 |             c11_calc::UnaryExpression::Deref(e) => Val::Lval(self.get(e) as usize),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:151:13
[INFO] [stdout]     |
[INFO] [stdout] 151 |             token_format::Tokens::Empty => Ok(RuntimeParser {
[INFO] [stdout]     |             ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:355:13
[INFO] [stdout]     |
[INFO] [stdout] 355 |             c11_calc::UnaryExpression::Uplus(e) => Val::Rval(self.get(e)),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:82:13
[INFO] [stdout]    |
[INFO] [stdout] 82 |         let list::OptNum::Opt(opt) = node;
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:155:13
[INFO] [stdout]     |
[INFO] [stdout] 155 |             token_format::Tokens::Append(mut parser, token_cst) => {
[INFO] [stdout]     |             ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:356:13
[INFO] [stdout]     |
[INFO] [stdout] 356 |             c11_calc::UnaryExpression::Uminus(e) => Val::Rval(-self.get(e)),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:357:13
[INFO] [stdout]     |
[INFO] [stdout] 357 |             c11_calc::UnaryExpression::Bitnot(e) => Val::Rval(!self.get(e)),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:158:46
[INFO] [stdout]     |
[INFO] [stdout] 158 |                 let value = colon_value.map(|token_format::ColonValue::ColonValue(v)| match v {
[INFO] [stdout]     |                                              ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:175:17
[INFO] [stdout]     |
[INFO] [stdout] 175 |                 expr::RawToken::Minus => expr::Terminal::Minus(Precedence::Left(6)),
[INFO] [stdout]     |                 ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:358:13
[INFO] [stdout]     |
[INFO] [stdout] 358 |             c11_calc::UnaryExpression::Lognot(e) => Val::Rval(if self.get(e) == 0 { 1 } else { 0 }),
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:159:21
[INFO] [stdout]     |
[INFO] [stdout] 159 |                     token_format::Value::Ident(s) | token_format::Value::Num(s) => s,
[INFO] [stdout]     |                     ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:159:53
[INFO] [stdout]     |
[INFO] [stdout] 159 |                     token_format::Value::Ident(s) | token_format::Value::Num(s) => s,
[INFO] [stdout]     |                                                     ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:176:17
[INFO] [stdout]     |
[INFO] [stdout] 176 |                 expr::RawToken::Op => {
[INFO] [stdout]     |                 ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:162:41
[INFO] [stdout]     |
[INFO] [stdout] 162 |                 let prec = at_prec.map(|token_format::AtPrecedence::AtPrec(assoc, level)| {
[INFO] [stdout]     |                                         ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:60:13
[INFO] [stdout]    |
[INFO] [stdout] 60 |             expr::Term::Num(n) => n,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  8 + use gazelle::Term;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Term`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 60 -             expr::Term::Num(n) => n,
[INFO] [stdout] 60 +             Term::Num(n) => n,
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:61:13
[INFO] [stdout]    |
[INFO] [stdout] 61 |             expr::Term::Paren(e) => e,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  8 + use gazelle::Term;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Term`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 61 -             expr::Term::Paren(e) => e,
[INFO] [stdout] 61 +             Term::Paren(e) => e,
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:62:13
[INFO] [stdout]    |
[INFO] [stdout] 62 |             expr::Term::Neg(e) => -e,
[INFO] [stdout]    |             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]    |
[INFO] [stdout]  8 + use gazelle::Term;
[INFO] [stdout]    |
[INFO] [stdout] help: if you import `Term`, refer to it directly
[INFO] [stdout]    |
[INFO] [stdout] 62 -             expr::Term::Neg(e) => -e,
[INFO] [stdout] 62 +             Term::Neg(e) => -e,
[INFO] [stdout]    |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:161:22
[INFO] [stdout]     |
[INFO] [stdout] 161 |     let mut parser = expr::Parser::<Eval>::new();
[INFO] [stdout]     |                      ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]   8 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]   8 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 161 -     let mut parser = expr::Parser::<Eval>::new();
[INFO] [stdout] 161 +     let mut parser = Parser::<Eval>::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:174:40
[INFO] [stdout]     |
[INFO] [stdout] 174 |                 expr::RawToken::Num => expr::Terminal::Num(input[span].parse().unwrap()),
[INFO] [stdout]     |                                        ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   8 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 174 -                 expr::RawToken::Num => expr::Terminal::Num(input[span].parse().unwrap()),
[INFO] [stdout] 174 +                 expr::RawToken::Num => Terminal::Num(input[span].parse().unwrap()),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:175:42
[INFO] [stdout]     |
[INFO] [stdout] 175 |                 expr::RawToken::Minus => expr::Terminal::Minus(Precedence::Left(6)),
[INFO] [stdout]     |                                          ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   8 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 175 -                 expr::RawToken::Minus => expr::Terminal::Minus(Precedence::Left(6)),
[INFO] [stdout] 175 +                 expr::RawToken::Minus => Terminal::Minus(Precedence::Left(6)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:178:21
[INFO] [stdout]     |
[INFO] [stdout] 178 |                     expr::Terminal::Op(val, prec)
[INFO] [stdout]     |                     ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   8 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 178 -                     expr::Terminal::Op(val, prec)
[INFO] [stdout] 178 +                     Terminal::Op(val, prec)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:165:25
[INFO] [stdout]     |
[INFO] [stdout] 165 |                         token_format::Assoc::Left => Precedence::Left(level),
[INFO] [stdout]     |                         ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:40:6
[INFO] [stdout]    |
[INFO] [stdout] 40 | impl list::Types for Builder {
[INFO] [stdout]    |      ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:49:22
[INFO] [stdout]    |
[INFO] [stdout] 49 | impl gazelle::Action<list::Items<Self>> for Builder {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:40:6
[INFO] [stdout]    |
[INFO] [stdout] 40 | impl expr::Types for Eval {
[INFO] [stdout]    |      ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:48:22
[INFO] [stdout]    |
[INFO] [stdout] 48 | impl gazelle::Action<expr::Binop<Self>> for Eval {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:49:31
[INFO] [stdout]    |
[INFO] [stdout] 49 |     fn build(&mut self, node: expr::Binop<Self>) -> Result<char, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:57:22
[INFO] [stdout]    |
[INFO] [stdout] 57 | impl gazelle::Action<expr::Term<Self>> for Eval {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:58:31
[INFO] [stdout]    |
[INFO] [stdout] 58 |     fn build(&mut self, node: expr::Term<Self>) -> Result<i64, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:67:22
[INFO] [stdout]    |
[INFO] [stdout] 67 | impl gazelle::Action<expr::Expr<Self>> for Eval {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]   --> examples/expr_eval.rs:68:31
[INFO] [stdout]    |
[INFO] [stdout] 68 |     fn build(&mut self, node: expr::Expr<Self>) -> Result<i64, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `expr` in this scope
[INFO] [stdout]    --> examples/expr_eval.rs:169:29
[INFO] [stdout]     |
[INFO] [stdout] 169 |         let (lexed, span) = expr::next_token(&mut src)
[INFO] [stdout]     |                             ^^^^ use of unresolved module or unlinked crate `expr`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `expr`, use `cargo add expr` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:166:25
[INFO] [stdout]     |
[INFO] [stdout] 166 |                         token_format::Assoc::Right => Precedence::Right(level),
[INFO] [stdout]     |                         ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:50:31
[INFO] [stdout]    |
[INFO] [stdout] 50 |     fn build(&mut self, node: list::Items<Self>) -> Result<Vec<i32>, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:56:22
[INFO] [stdout]    |
[INFO] [stdout] 56 | impl gazelle::Action<list::Semis<Self>> for Builder {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:57:31
[INFO] [stdout]    |
[INFO] [stdout] 57 |     fn build(&mut self, node: list::Semis<Self>) -> Result<usize, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:64:22
[INFO] [stdout]    |
[INFO] [stdout] 64 | impl gazelle::Action<list::Item<Self>> for Builder {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:65:31
[INFO] [stdout]    |
[INFO] [stdout] 65 |     fn build(&mut self, node: list::Item<Self>) -> Result<i32, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:73:22
[INFO] [stdout]    |
[INFO] [stdout] 73 | impl gazelle::Action<list::Nums<Self>> for Builder {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:74:31
[INFO] [stdout]    |
[INFO] [stdout] 74 |     fn build(&mut self, node: list::Nums<Self>) -> Result<Vec<i32>, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:80:22
[INFO] [stdout]    |
[INFO] [stdout] 80 | impl gazelle::Action<list::OptNum<Self>> for Builder {
[INFO] [stdout]    |                      ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `list` in this scope
[INFO] [stdout]   --> examples/modifiers.rs:81:31
[INFO] [stdout]    |
[INFO] [stdout] 81 |     fn build(&mut self, node: list::OptNum<Self>) -> Result<Option<i32>, Self::Error> {
[INFO] [stdout]    |                               ^^^^ use of unresolved module or unlinked crate `list`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `list`, use `cargo add list` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (example "expr_eval") due to 25 previous errors
[INFO] [stderr] error: could not compile `gazelle-parser` (example "modifiers") due to 18 previous errors
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:156:21
[INFO] [stdout]     |
[INFO] [stdout] 156 |                 let token_format::Token::Token(name, colon_value, at_prec) = token_cst;
[INFO] [stdout]     |                     ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this struct
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::Token;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Token`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 156 -                 let token_format::Token::Token(name, colon_value, at_prec) = token_cst;
[INFO] [stdout] 156 +                 let Token::Token(name, colon_value, at_prec) = token_cst;
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:215:22
[INFO] [stdout]     |
[INFO] [stdout] 215 |     let mut parser = token_format::Parser::<Actions>::new();
[INFO] [stdout]     |                      ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 215 -     let mut parser = token_format::Parser::<Actions>::new();
[INFO] [stdout] 215 +     let mut parser = Parser::<Actions>::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:227:13
[INFO] [stdout]     |
[INFO] [stdout] 227 |             token_format::Terminal::Ident(input[span].to_string())
[INFO] [stdout]     |             ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 227 -             token_format::Terminal::Ident(input[span].to_string())
[INFO] [stdout] 227 +             Terminal::Ident(input[span].to_string())
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:229:13
[INFO] [stdout]     |
[INFO] [stdout] 229 |             token_format::Terminal::Num(input[span].to_string())
[INFO] [stdout]     |             ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 229 -             token_format::Terminal::Num(input[span].to_string())
[INFO] [stdout] 229 +             Terminal::Num(input[span].to_string())
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:233:24
[INFO] [stdout]     |
[INFO] [stdout] 233 |                 ':' => token_format::Terminal::Colon,
[INFO] [stdout]     |                        ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 233 -                 ':' => token_format::Terminal::Colon,
[INFO] [stdout] 233 +                 ':' => Terminal::Colon,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:234:24
[INFO] [stdout]     |
[INFO] [stdout] 234 |                 '@' => token_format::Terminal::At,
[INFO] [stdout]     |                        ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 234 -                 '@' => token_format::Terminal::At,
[INFO] [stdout] 234 +                 '@' => Terminal::At,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:235:24
[INFO] [stdout]     |
[INFO] [stdout] 235 |                 '<' => token_format::Terminal::Lt,
[INFO] [stdout]     |                        ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 235 -                 '<' => token_format::Terminal::Lt,
[INFO] [stdout] 235 +                 '<' => Terminal::Lt,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:236:24
[INFO] [stdout]     |
[INFO] [stdout] 236 |                 '>' => token_format::Terminal::Gt,
[INFO] [stdout]     |                        ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 236 -                 '>' => token_format::Terminal::Gt,
[INFO] [stdout] 236 +                 '>' => Terminal::Gt,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:237:24
[INFO] [stdout]     |
[INFO] [stdout] 237 |                 ';' => token_format::Terminal::Semi,
[INFO] [stdout]     |                        ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 237 -                 ';' => token_format::Terminal::Semi,
[INFO] [stdout] 237 +                 ';' => Terminal::Semi,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:238:22
[INFO] [stdout]     |
[INFO] [stdout] 238 |                 _ => token_format::Terminal::Ident(c.to_string()),
[INFO] [stdout]     |                      ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  23 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 238 -                 _ => token_format::Terminal::Ident(c.to_string()),
[INFO] [stdout] 238 +                 _ => Terminal::Ident(c.to_string()),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:366:13
[INFO] [stdout]     |
[INFO] [stdout] 366 |         let c11_calc::CastExpression::Unary(e) = node;
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:375:13
[INFO] [stdout]     |
[INFO] [stdout] 375 |             c11_calc::BinaryOp::Binop(op) => op,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0223]: ambiguous associated type
[INFO] [stdout]    --> examples/runtime_grammar.rs:130:75
[INFO] [stdout]     |
[INFO] [stdout] 130 |     fn build(&mut self, node: token_format::Sentence<Self>) -> Result<(), Self::Error> {
[INFO] [stdout]     |                                                                           ^^^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout] help: use fully-qualified syntax
[INFO] [stdout]     |
[INFO] [stdout] 130 -     fn build(&mut self, node: token_format::Sentence<Self>) -> Result<(), Self::Error> {
[INFO] [stdout] 130 +     fn build(&mut self, node: token_format::Sentence<Self>) -> Result<(), <Actions<'a> as TryFrom>::Error> {
[INFO] [stdout]     |
[INFO] [stdout] 130 -     fn build(&mut self, node: token_format::Sentence<Self>) -> Result<(), Self::Error> {
[INFO] [stdout] 130 +     fn build(&mut self, node: token_format::Sentence<Self>) -> Result<(), <Actions<'a> as TryInto>::Error> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0223]: ambiguous associated type
[INFO] [stdout]    --> examples/runtime_grammar.rs:149:36
[INFO] [stdout]     |
[INFO] [stdout] 149 |     ) -> Result<RuntimeParser<'a>, Self::Error> {
[INFO] [stdout]     |                                    ^^^^^^^^^^^
[INFO] [stdout]     |
[INFO] [stdout] help: use fully-qualified syntax
[INFO] [stdout]     |
[INFO] [stdout] 149 -     ) -> Result<RuntimeParser<'a>, Self::Error> {
[INFO] [stdout] 149 +     ) -> Result<RuntimeParser<'a>, <Actions<'a> as TryFrom>::Error> {
[INFO] [stdout]     |
[INFO] [stdout] 149 -     ) -> Result<RuntimeParser<'a>, Self::Error> {
[INFO] [stdout] 149 +     ) -> Result<RuntimeParser<'a>, <Actions<'a> as TryInto>::Error> {
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:376:13
[INFO] [stdout]     |
[INFO] [stdout] 376 |             c11_calc::BinaryOp::Mul => BinOp::Mul,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:113:10
[INFO] [stdout]     |
[INFO] [stdout] 113 | impl<'a> token_format::Types for Actions<'a> {
[INFO] [stdout]     |          ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:117:18
[INFO] [stdout]     |
[INFO] [stdout] 117 |     type Assoc = token_format::Assoc<Self>;
[INFO] [stdout]     |                  ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:118:25
[INFO] [stdout]     |
[INFO] [stdout] 118 |     type AtPrecedence = token_format::AtPrecedence<Self>;
[INFO] [stdout]     |                         ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:119:18
[INFO] [stdout]     |
[INFO] [stdout] 119 |     type Value = token_format::Value<Self>;
[INFO] [stdout]     |                  ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:120:23
[INFO] [stdout]     |
[INFO] [stdout] 120 |     type ColonValue = token_format::ColonValue<Self>;
[INFO] [stdout]     |                       ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:122:18
[INFO] [stdout]     |
[INFO] [stdout] 122 |     type Token = token_format::Token<Self>;
[INFO] [stdout]     |                  ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:129:26
[INFO] [stdout]     |
[INFO] [stdout] 129 | impl<'a> gazelle::Action<token_format::Sentence<Self>> for Actions<'a> {
[INFO] [stdout]     |                          ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:130:31
[INFO] [stdout]     |
[INFO] [stdout] 130 |     fn build(&mut self, node: token_format::Sentence<Self>) -> Result<(), Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:145:26
[INFO] [stdout]     |
[INFO] [stdout] 145 | impl<'a> gazelle::Action<token_format::Tokens<Self>> for Actions<'a> {
[INFO] [stdout]     |                          ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `token_format` in this scope
[INFO] [stdout]    --> examples/runtime_grammar.rs:148:15
[INFO] [stdout]     |
[INFO] [stdout] 148 |         node: token_format::Tokens<Self>,
[INFO] [stdout]     |               ^^^^^^^^^^^^ use of unresolved module or unlinked crate `token_format`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `token_format`, use `cargo add token_format` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0223, E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:377:13
[INFO] [stdout]     |
[INFO] [stdout] 377 |             c11_calc::BinaryOp::Bitand => BinOp::BitAnd,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0223`.
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:378:13
[INFO] [stdout]     |
[INFO] [stdout] 378 |             c11_calc::BinaryOp::Add => BinOp::Add,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (example "runtime_grammar") due to 32 previous errors
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:379:13
[INFO] [stdout]     |
[INFO] [stdout] 379 |             c11_calc::BinaryOp::Sub => BinOp::Sub,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:388:13
[INFO] [stdout]     |
[INFO] [stdout] 388 |             c11_calc::AssignmentExpression::Cast(e) => e,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:389:13
[INFO] [stdout]     |
[INFO] [stdout] 389 |             c11_calc::AssignmentExpression::Binary(l, op, r) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:524:13
[INFO] [stdout]     |
[INFO] [stdout] 524 |             c11_calc::AssignmentExpression::Ternary(cond, then_val, else_val) => {
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:539:13
[INFO] [stdout]     |
[INFO] [stdout] 539 |             c11_calc::Expression::Assign(e) => e,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:540:13
[INFO] [stdout]     |
[INFO] [stdout] 540 |             c11_calc::Expression::Comma(_l, r) => r,
[INFO] [stdout]     |             ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:595:28
[INFO] [stdout]     |
[INFO] [stdout] 595 |             return Ok(Some(c11_calc::Terminal::Num(s.parse().unwrap_or(0))));
[INFO] [stdout]     |                            ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 595 -             return Ok(Some(c11_calc::Terminal::Num(s.parse().unwrap_or(0))));
[INFO] [stdout] 595 +             return Ok(Some(Terminal::Num(s.parse().unwrap_or(0))));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:614:31
[INFO] [stdout]     |
[INFO] [stdout] 614 |                 "operator" => c11_calc::Terminal::Operator,
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 614 -                 "operator" => c11_calc::Terminal::Operator,
[INFO] [stdout] 614 +                 "operator" => Terminal::Operator,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:615:27
[INFO] [stdout]     |
[INFO] [stdout] 615 |                 "left" => c11_calc::Terminal::Left,
[INFO] [stdout]     |                           ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 615 -                 "left" => c11_calc::Terminal::Left,
[INFO] [stdout] 615 +                 "left" => Terminal::Left,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:616:28
[INFO] [stdout]     |
[INFO] [stdout] 616 |                 "right" => c11_calc::Terminal::Right,
[INFO] [stdout]     |                            ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 616 -                 "right" => c11_calc::Terminal::Right,
[INFO] [stdout] 616 +                 "right" => Terminal::Right,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:617:22
[INFO] [stdout]     |
[INFO] [stdout] 617 |                 _ => c11_calc::Terminal::Ident(s),
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 617 -                 _ => c11_calc::Terminal::Ident(s),
[INFO] [stdout] 617 +                 _ => Terminal::Ident(s),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:626:36
[INFO] [stdout]     |
[INFO] [stdout] 626 |                     return Ok(Some(c11_calc::Terminal::Lparen));
[INFO] [stdout]     |                                    ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 626 -                     return Ok(Some(c11_calc::Terminal::Lparen));
[INFO] [stdout] 626 +                     return Ok(Some(Terminal::Lparen));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:630:36
[INFO] [stdout]     |
[INFO] [stdout] 630 |                     return Ok(Some(c11_calc::Terminal::Rparen));
[INFO] [stdout]     |                                    ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 630 -                     return Ok(Some(c11_calc::Terminal::Rparen));
[INFO] [stdout] 630 +                     return Ok(Some(Terminal::Rparen));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:634:36
[INFO] [stdout]     |
[INFO] [stdout] 634 |                     return Ok(Some(c11_calc::Terminal::Lbrack));
[INFO] [stdout]     |                                    ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 634 -                     return Ok(Some(c11_calc::Terminal::Lbrack));
[INFO] [stdout] 634 +                     return Ok(Some(Terminal::Lbrack));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:638:36
[INFO] [stdout]     |
[INFO] [stdout] 638 |                     return Ok(Some(c11_calc::Terminal::Rbrack));
[INFO] [stdout]     |                                    ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 638 -                     return Ok(Some(c11_calc::Terminal::Rbrack));
[INFO] [stdout] 638 +                     return Ok(Some(Terminal::Rbrack));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:642:36
[INFO] [stdout]     |
[INFO] [stdout] 642 |                     return Ok(Some(c11_calc::Terminal::Comma));
[INFO] [stdout]     |                                    ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 642 -                     return Ok(Some(c11_calc::Terminal::Comma));
[INFO] [stdout] 642 +                     return Ok(Some(Terminal::Comma));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:646:36
[INFO] [stdout]     |
[INFO] [stdout] 646 |                     return Ok(Some(c11_calc::Terminal::Semi));
[INFO] [stdout]     |                                    ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 646 -                     return Ok(Some(c11_calc::Terminal::Semi));
[INFO] [stdout] 646 +                     return Ok(Some(Terminal::Semi));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:659:16
[INFO] [stdout]     |
[INFO] [stdout] 659 |             || c11_calc::Terminal::Binop(BinOp::ShlAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 659 -             || c11_calc::Terminal::Binop(BinOp::ShlAssign, Precedence::Right(1)),
[INFO] [stdout] 659 +             || Terminal::Binop(BinOp::ShlAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:660:16
[INFO] [stdout]     |
[INFO] [stdout] 660 |             || c11_calc::Terminal::Binop(BinOp::ShrAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 660 -             || c11_calc::Terminal::Binop(BinOp::ShrAssign, Precedence::Right(1)),
[INFO] [stdout] 660 +             || Terminal::Binop(BinOp::ShrAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:661:16
[INFO] [stdout]     |
[INFO] [stdout] 661 |             || c11_calc::Terminal::Inc,
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 661 -             || c11_calc::Terminal::Inc,
[INFO] [stdout] 661 +             || Terminal::Inc,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:662:16
[INFO] [stdout]     |
[INFO] [stdout] 662 |             || c11_calc::Terminal::Dec,
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 662 -             || c11_calc::Terminal::Dec,
[INFO] [stdout] 662 +             || Terminal::Dec,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:663:16
[INFO] [stdout]     |
[INFO] [stdout] 663 |             || c11_calc::Terminal::Binop(BinOp::Shl, Precedence::Left(10)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 663 -             || c11_calc::Terminal::Binop(BinOp::Shl, Precedence::Left(10)),
[INFO] [stdout] 663 +             || Terminal::Binop(BinOp::Shl, Precedence::Left(10)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:664:16
[INFO] [stdout]     |
[INFO] [stdout] 664 |             || c11_calc::Terminal::Binop(BinOp::Shr, Precedence::Left(10)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 664 -             || c11_calc::Terminal::Binop(BinOp::Shr, Precedence::Left(10)),
[INFO] [stdout] 664 +             || Terminal::Binop(BinOp::Shr, Precedence::Left(10)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:665:16
[INFO] [stdout]     |
[INFO] [stdout] 665 |             || c11_calc::Terminal::Binop(BinOp::Le, Precedence::Left(9)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 665 -             || c11_calc::Terminal::Binop(BinOp::Le, Precedence::Left(9)),
[INFO] [stdout] 665 +             || Terminal::Binop(BinOp::Le, Precedence::Left(9)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:666:16
[INFO] [stdout]     |
[INFO] [stdout] 666 |             || c11_calc::Terminal::Binop(BinOp::Ge, Precedence::Left(9)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 666 -             || c11_calc::Terminal::Binop(BinOp::Ge, Precedence::Left(9)),
[INFO] [stdout] 666 +             || Terminal::Binop(BinOp::Ge, Precedence::Left(9)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:667:16
[INFO] [stdout]     |
[INFO] [stdout] 667 |             || c11_calc::Terminal::Binop(BinOp::Eq, Precedence::Left(8)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 667 -             || c11_calc::Terminal::Binop(BinOp::Eq, Precedence::Left(8)),
[INFO] [stdout] 667 +             || Terminal::Binop(BinOp::Eq, Precedence::Left(8)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:668:16
[INFO] [stdout]     |
[INFO] [stdout] 668 |             || c11_calc::Terminal::Binop(BinOp::Ne, Precedence::Left(8)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 668 -             || c11_calc::Terminal::Binop(BinOp::Ne, Precedence::Left(8)),
[INFO] [stdout] 668 +             || Terminal::Binop(BinOp::Ne, Precedence::Left(8)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:669:16
[INFO] [stdout]     |
[INFO] [stdout] 669 |             || c11_calc::Terminal::Binop(BinOp::And, Precedence::Left(4)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 669 -             || c11_calc::Terminal::Binop(BinOp::And, Precedence::Left(4)),
[INFO] [stdout] 669 +             || Terminal::Binop(BinOp::And, Precedence::Left(4)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:670:16
[INFO] [stdout]     |
[INFO] [stdout] 670 |             || c11_calc::Terminal::Binop(BinOp::Or, Precedence::Left(3)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 670 -             || c11_calc::Terminal::Binop(BinOp::Or, Precedence::Left(3)),
[INFO] [stdout] 670 +             || Terminal::Binop(BinOp::Or, Precedence::Left(3)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:671:16
[INFO] [stdout]     |
[INFO] [stdout] 671 |             || c11_calc::Terminal::Binop(BinOp::AddAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 671 -             || c11_calc::Terminal::Binop(BinOp::AddAssign, Precedence::Right(1)),
[INFO] [stdout] 671 +             || Terminal::Binop(BinOp::AddAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:672:16
[INFO] [stdout]     |
[INFO] [stdout] 672 |             || c11_calc::Terminal::Binop(BinOp::SubAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 672 -             || c11_calc::Terminal::Binop(BinOp::SubAssign, Precedence::Right(1)),
[INFO] [stdout] 672 +             || Terminal::Binop(BinOp::SubAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:673:16
[INFO] [stdout]     |
[INFO] [stdout] 673 |             || c11_calc::Terminal::Binop(BinOp::MulAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 673 -             || c11_calc::Terminal::Binop(BinOp::MulAssign, Precedence::Right(1)),
[INFO] [stdout] 673 +             || Terminal::Binop(BinOp::MulAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:674:16
[INFO] [stdout]     |
[INFO] [stdout] 674 |             || c11_calc::Terminal::Binop(BinOp::DivAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 674 -             || c11_calc::Terminal::Binop(BinOp::DivAssign, Precedence::Right(1)),
[INFO] [stdout] 674 +             || Terminal::Binop(BinOp::DivAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:675:16
[INFO] [stdout]     |
[INFO] [stdout] 675 |             || c11_calc::Terminal::Binop(BinOp::ModAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 675 -             || c11_calc::Terminal::Binop(BinOp::ModAssign, Precedence::Right(1)),
[INFO] [stdout] 675 +             || Terminal::Binop(BinOp::ModAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:676:16
[INFO] [stdout]     |
[INFO] [stdout] 676 |             || c11_calc::Terminal::Binop(BinOp::BitAndAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 676 -             || c11_calc::Terminal::Binop(BinOp::BitAndAssign, Precedence::Right(1)),
[INFO] [stdout] 676 +             || Terminal::Binop(BinOp::BitAndAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:677:16
[INFO] [stdout]     |
[INFO] [stdout] 677 |             || c11_calc::Terminal::Binop(BinOp::BitOrAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 677 -             || c11_calc::Terminal::Binop(BinOp::BitOrAssign, Precedence::Right(1)),
[INFO] [stdout] 677 +             || Terminal::Binop(BinOp::BitOrAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:678:16
[INFO] [stdout]     |
[INFO] [stdout] 678 |             || c11_calc::Terminal::Binop(BinOp::BitXorAssign, Precedence::Right(1)),
[INFO] [stdout]     |                ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 678 -             || c11_calc::Terminal::Binop(BinOp::BitXorAssign, Precedence::Right(1)),
[INFO] [stdout] 678 +             || Terminal::Binop(BinOp::BitXorAssign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:689:24
[INFO] [stdout]     |
[INFO] [stdout] 689 |                 '+' => c11_calc::Terminal::Plus(Precedence::Left(11)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 689 -                 '+' => c11_calc::Terminal::Plus(Precedence::Left(11)),
[INFO] [stdout] 689 +                 '+' => Terminal::Plus(Precedence::Left(11)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:690:24
[INFO] [stdout]     |
[INFO] [stdout] 690 |                 '-' => c11_calc::Terminal::Minus(Precedence::Left(11)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 690 -                 '-' => c11_calc::Terminal::Minus(Precedence::Left(11)),
[INFO] [stdout] 690 +                 '-' => Terminal::Minus(Precedence::Left(11)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:691:24
[INFO] [stdout]     |
[INFO] [stdout] 691 |                 '*' => c11_calc::Terminal::Star(Precedence::Left(12)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 691 -                 '*' => c11_calc::Terminal::Star(Precedence::Left(12)),
[INFO] [stdout] 691 +                 '*' => Terminal::Star(Precedence::Left(12)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:692:24
[INFO] [stdout]     |
[INFO] [stdout] 692 |                 '&' => c11_calc::Terminal::Amp(Precedence::Left(7)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 692 -                 '&' => c11_calc::Terminal::Amp(Precedence::Left(7)),
[INFO] [stdout] 692 +                 '&' => Terminal::Amp(Precedence::Left(7)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:693:24
[INFO] [stdout]     |
[INFO] [stdout] 693 |                 '~' => c11_calc::Terminal::Tilde,
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 693 -                 '~' => c11_calc::Terminal::Tilde,
[INFO] [stdout] 693 +                 '~' => Terminal::Tilde,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:694:24
[INFO] [stdout]     |
[INFO] [stdout] 694 |                 '!' => c11_calc::Terminal::Bang,
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 694 -                 '!' => c11_calc::Terminal::Bang,
[INFO] [stdout] 694 +                 '!' => Terminal::Bang,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:695:24
[INFO] [stdout]     |
[INFO] [stdout] 695 |                 ':' => c11_calc::Terminal::Colon,
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 695 -                 ':' => c11_calc::Terminal::Colon,
[INFO] [stdout] 695 +                 ':' => Terminal::Colon,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:696:24
[INFO] [stdout]     |
[INFO] [stdout] 696 |                 '?' => c11_calc::Terminal::Question(Precedence::Right(2)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 696 -                 '?' => c11_calc::Terminal::Question(Precedence::Right(2)),
[INFO] [stdout] 696 +                 '?' => Terminal::Question(Precedence::Right(2)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:697:24
[INFO] [stdout]     |
[INFO] [stdout] 697 |                 '/' => c11_calc::Terminal::Binop(BinOp::Div, Precedence::Left(12)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 697 -                 '/' => c11_calc::Terminal::Binop(BinOp::Div, Precedence::Left(12)),
[INFO] [stdout] 697 +                 '/' => Terminal::Binop(BinOp::Div, Precedence::Left(12)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:698:24
[INFO] [stdout]     |
[INFO] [stdout] 698 |                 '%' => c11_calc::Terminal::Binop(BinOp::Mod, Precedence::Left(12)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 698 -                 '%' => c11_calc::Terminal::Binop(BinOp::Mod, Precedence::Left(12)),
[INFO] [stdout] 698 +                 '%' => Terminal::Binop(BinOp::Mod, Precedence::Left(12)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:699:24
[INFO] [stdout]     |
[INFO] [stdout] 699 |                 '<' => c11_calc::Terminal::Binop(BinOp::Lt, Precedence::Left(9)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 699 -                 '<' => c11_calc::Terminal::Binop(BinOp::Lt, Precedence::Left(9)),
[INFO] [stdout] 699 +                 '<' => Terminal::Binop(BinOp::Lt, Precedence::Left(9)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:700:24
[INFO] [stdout]     |
[INFO] [stdout] 700 |                 '>' => c11_calc::Terminal::Binop(BinOp::Gt, Precedence::Left(9)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 700 -                 '>' => c11_calc::Terminal::Binop(BinOp::Gt, Precedence::Left(9)),
[INFO] [stdout] 700 +                 '>' => Terminal::Binop(BinOp::Gt, Precedence::Left(9)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:701:24
[INFO] [stdout]     |
[INFO] [stdout] 701 |                 '^' => c11_calc::Terminal::Binop(BinOp::BitXor, Precedence::Left(6)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 701 -                 '^' => c11_calc::Terminal::Binop(BinOp::BitXor, Precedence::Left(6)),
[INFO] [stdout] 701 +                 '^' => Terminal::Binop(BinOp::BitXor, Precedence::Left(6)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:702:24
[INFO] [stdout]     |
[INFO] [stdout] 702 |                 '|' => c11_calc::Terminal::Binop(BinOp::BitOr, Precedence::Left(5)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 702 -                 '|' => c11_calc::Terminal::Binop(BinOp::BitOr, Precedence::Left(5)),
[INFO] [stdout] 702 +                 '|' => Terminal::Binop(BinOp::BitOr, Precedence::Left(5)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:703:24
[INFO] [stdout]     |
[INFO] [stdout] 703 |                 '=' => c11_calc::Terminal::Binop(BinOp::Assign, Precedence::Right(1)),
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 703 -                 '=' => c11_calc::Terminal::Binop(BinOp::Assign, Precedence::Right(1)),
[INFO] [stdout] 703 +                 '=' => Terminal::Binop(BinOp::Assign, Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:710:21
[INFO] [stdout]     |
[INFO] [stdout] 710 |                     c11_calc::Terminal::Binop(BinOp::Custom(ch), prec)
[INFO] [stdout]     |                     ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 710 -                     c11_calc::Terminal::Binop(BinOp::Custom(ch), prec)
[INFO] [stdout] 710 +                     Terminal::Binop(BinOp::Custom(ch), prec)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:720:22
[INFO] [stdout]     |
[INFO] [stdout] 720 |     let mut parser = c11_calc::Parser::<Eval>::new();
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]  10 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 720 -     let mut parser = c11_calc::Parser::<Eval>::new();
[INFO] [stdout] 720 +     let mut parser = Parser::<Eval>::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:214:6
[INFO] [stdout]     |
[INFO] [stdout] 214 | impl c11_calc::Types for Eval {
[INFO] [stdout]     |      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:232:22
[INFO] [stdout]     |
[INFO] [stdout] 232 | impl gazelle::Action<c11_calc::Assoc<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:233:31
[INFO] [stdout]     |
[INFO] [stdout] 233 |     fn build(&mut self, node: c11_calc::Assoc<Self>) -> Result<fn(u8) -> Precedence, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:242:22
[INFO] [stdout]     |
[INFO] [stdout] 242 | impl gazelle::Action<c11_calc::Stmt<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:243:31
[INFO] [stdout]     |
[INFO] [stdout] 243 |     fn build(&mut self, node: c11_calc::Stmt<Self>) -> Result<(), Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:266:22
[INFO] [stdout]     |
[INFO] [stdout] 266 | impl gazelle::Action<c11_calc::PrimaryExpression<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:267:31
[INFO] [stdout]     |
[INFO] [stdout] 267 |     fn build(&mut self, node: c11_calc::PrimaryExpression<Self>) -> Result<Val, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:277:22
[INFO] [stdout]     |
[INFO] [stdout] 277 | impl gazelle::Action<c11_calc::PostfixExpression<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:278:31
[INFO] [stdout]     |
[INFO] [stdout] 278 |     fn build(&mut self, node: c11_calc::PostfixExpression<Self>) -> Result<Val, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:320:22
[INFO] [stdout]     |
[INFO] [stdout] 320 | impl gazelle::Action<c11_calc::ArgumentExpressionList<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:323:15
[INFO] [stdout]     |
[INFO] [stdout] 323 |         node: c11_calc::ArgumentExpressionList<Self>,
[INFO] [stdout]     |               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:336:22
[INFO] [stdout]     |
[INFO] [stdout] 336 | impl gazelle::Action<c11_calc::UnaryExpression<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:337:31
[INFO] [stdout]     |
[INFO] [stdout] 337 |     fn build(&mut self, node: c11_calc::UnaryExpression<Self>) -> Result<Val, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:364:22
[INFO] [stdout]     |
[INFO] [stdout] 364 | impl gazelle::Action<c11_calc::CastExpression<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:365:31
[INFO] [stdout]     |
[INFO] [stdout] 365 |     fn build(&mut self, node: c11_calc::CastExpression<Self>) -> Result<Val, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:372:22
[INFO] [stdout]     |
[INFO] [stdout] 372 | impl gazelle::Action<c11_calc::BinaryOp<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:373:31
[INFO] [stdout]     |
[INFO] [stdout] 373 |     fn build(&mut self, node: c11_calc::BinaryOp<Self>) -> Result<BinOp, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:385:22
[INFO] [stdout]     |
[INFO] [stdout] 385 | impl gazelle::Action<c11_calc::AssignmentExpression<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:386:31
[INFO] [stdout]     |
[INFO] [stdout] 386 |     fn build(&mut self, node: c11_calc::AssignmentExpression<Self>) -> Result<Val, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:536:22
[INFO] [stdout]     |
[INFO] [stdout] 536 | impl gazelle::Action<c11_calc::Expression<Self>> for Eval {
[INFO] [stdout]     |                      ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:537:31
[INFO] [stdout]     |
[INFO] [stdout] 537 |     fn build(&mut self, node: c11_calc::Expression<Self>) -> Result<Val, Self::Error> {
[INFO] [stdout]     |                               ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:572:24
[INFO] [stdout]     |
[INFO] [stdout] 572 |     ) -> Result<Option<c11_calc::Terminal<Eval>>, String> {
[INFO] [stdout]     |                        ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11_calc` in this scope
[INFO] [stdout]    --> examples/c11_calculator.rs:658:42
[INFO] [stdout]     |
[INFO] [stdout] 658 |         const MULTI_TERMINALS: &[fn() -> c11_calc::Terminal<Eval>] = &[
[INFO] [stdout]     |                                          ^^^^^^^^ use of unresolved module or unlinked crate `c11_calc`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11_calc`, use `cargo add c11_calc` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (example "c11_calculator") due to 107 previous errors
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:262:13
[INFO] [stdout]     |
[INFO] [stdout] 262 |         let c11::TypedefName::TypedefName(name) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:269:13
[INFO] [stdout]     |
[INFO] [stdout] 269 |         let c11::VarName::VarName(name) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:277:13
[INFO] [stdout]     |
[INFO] [stdout] 277 |             c11::GeneralIdentifier::Typedef(name) => name,
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:278:13
[INFO] [stdout]     |
[INFO] [stdout] 278 |             c11::GeneralIdentifier::Var(name) => name,
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:285:13
[INFO] [stdout]     |
[INFO] [stdout] 285 |         let c11::EnumerationConstant::EnumConst(name) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:301:13
[INFO] [stdout]     |
[INFO] [stdout] 301 |         let c11::ScopedCompoundStatement::RestoreCompound(ref mut ctx, _) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:312:13
[INFO] [stdout]     |
[INFO] [stdout] 312 |         let c11::ScopedIterationStatement::RestoreIteration(ref mut ctx, _) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:323:13
[INFO] [stdout]     |
[INFO] [stdout] 323 |         let c11::ScopedSelectionStatement::RestoreSelection(ref mut ctx, _) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:334:13
[INFO] [stdout]     |
[INFO] [stdout] 334 |         let c11::ScopedStatement::RestoreStatement(ref mut ctx, _) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:345:13
[INFO] [stdout]     |
[INFO] [stdout] 345 |         let c11::ScopedParameterTypeList::ScopedParams(ref mut ctx, _) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:356:13
[INFO] [stdout]     |
[INFO] [stdout] 356 |         let c11::DeclaratorVarname::DeclVarname(ref d) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:367:13
[INFO] [stdout]     |
[INFO] [stdout] 367 |         let c11::DeclaratorTypedefname::RegisterTypedef(ref d) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:378:13
[INFO] [stdout]     |
[INFO] [stdout] 378 |         let c11::FunctionDefinition1::FuncDef1(_, ref mut dv) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:379:13
[INFO] [stdout]     |
[INFO] [stdout] 379 |         let c11::DeclaratorVarname::DeclVarname(ref mut d) = dv.0;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:395:13
[INFO] [stdout]     |
[INFO] [stdout] 395 |         let c11::FunctionDefinition::FuncDef((ref mut saved, _), _, _) = node;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:407:13
[INFO] [stdout]     |
[INFO] [stdout] 407 |             c11::Enumerator::DeclEnum(name) | c11::Enumerator::DeclEnumExpr(name, _) => {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:407:47
[INFO] [stdout]     |
[INFO] [stdout] 407 |             c11::Enumerator::DeclEnum(name) | c11::Enumerator::DeclEnumExpr(name, _) => {
[INFO] [stdout]     |                                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:447:17
[INFO] [stdout]     |
[INFO] [stdout] 447 |                 c11::Terminal::Type
[INFO] [stdout]     |                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 447 -                 c11::Terminal::Type
[INFO] [stdout] 447 +                 Terminal::Type
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:449:17
[INFO] [stdout]     |
[INFO] [stdout] 449 |                 c11::Terminal::Variable
[INFO] [stdout]     |                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 449 -                 c11::Terminal::Variable
[INFO] [stdout] 449 +                 Terminal::Variable
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:479:32
[INFO] [stdout]     |
[INFO] [stdout] 479 |                     return ok!(c11::Terminal::Constant(String::new()));
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 479 -                     return ok!(c11::Terminal::Constant(String::new()));
[INFO] [stdout] 479 +                     return ok!(Terminal::Constant(String::new()));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:482:32
[INFO] [stdout]     |
[INFO] [stdout] 482 |                     return ok!(c11::Terminal::StringLiteral(String::new()));
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 482 -                     return ok!(c11::Terminal::StringLiteral(String::new()));
[INFO] [stdout] 482 +                     return ok!(Terminal::StringLiteral(String::new()));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:488:27
[INFO] [stdout]     |
[INFO] [stdout] 488 |                 "auto" => c11::Terminal::Auto,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 488 -                 "auto" => c11::Terminal::Auto,
[INFO] [stdout] 488 +                 "auto" => Terminal::Auto,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:489:28
[INFO] [stdout]     |
[INFO] [stdout] 489 |                 "break" => c11::Terminal::Break,
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 489 -                 "break" => c11::Terminal::Break,
[INFO] [stdout] 489 +                 "break" => Terminal::Break,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:490:27
[INFO] [stdout]     |
[INFO] [stdout] 490 |                 "case" => c11::Terminal::Case,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 490 -                 "case" => c11::Terminal::Case,
[INFO] [stdout] 490 +                 "case" => Terminal::Case,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:491:27
[INFO] [stdout]     |
[INFO] [stdout] 491 |                 "char" => c11::Terminal::Char,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 491 -                 "char" => c11::Terminal::Char,
[INFO] [stdout] 491 +                 "char" => Terminal::Char,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:492:28
[INFO] [stdout]     |
[INFO] [stdout] 492 |                 "const" => c11::Terminal::Const,
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 492 -                 "const" => c11::Terminal::Const,
[INFO] [stdout] 492 +                 "const" => Terminal::Const,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:493:31
[INFO] [stdout]     |
[INFO] [stdout] 493 |                 "continue" => c11::Terminal::Continue,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 493 -                 "continue" => c11::Terminal::Continue,
[INFO] [stdout] 493 +                 "continue" => Terminal::Continue,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:494:30
[INFO] [stdout]     |
[INFO] [stdout] 494 |                 "default" => c11::Terminal::Default,
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 494 -                 "default" => c11::Terminal::Default,
[INFO] [stdout] 494 +                 "default" => Terminal::Default,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:495:25
[INFO] [stdout]     |
[INFO] [stdout] 495 |                 "do" => c11::Terminal::Do,
[INFO] [stdout]     |                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 495 -                 "do" => c11::Terminal::Do,
[INFO] [stdout] 495 +                 "do" => Terminal::Do,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:496:29
[INFO] [stdout]     |
[INFO] [stdout] 496 |                 "double" => c11::Terminal::Double,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 496 -                 "double" => c11::Terminal::Double,
[INFO] [stdout] 496 +                 "double" => Terminal::Double,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:497:27
[INFO] [stdout]     |
[INFO] [stdout] 497 |                 "else" => c11::Terminal::Else,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 497 -                 "else" => c11::Terminal::Else,
[INFO] [stdout] 497 +                 "else" => Terminal::Else,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:498:27
[INFO] [stdout]     |
[INFO] [stdout] 498 |                 "enum" => c11::Terminal::Enum,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 498 -                 "enum" => c11::Terminal::Enum,
[INFO] [stdout] 498 +                 "enum" => Terminal::Enum,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:499:29
[INFO] [stdout]     |
[INFO] [stdout] 499 |                 "extern" => c11::Terminal::Extern,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 499 -                 "extern" => c11::Terminal::Extern,
[INFO] [stdout] 499 +                 "extern" => Terminal::Extern,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:500:28
[INFO] [stdout]     |
[INFO] [stdout] 500 |                 "float" => c11::Terminal::Float,
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 500 -                 "float" => c11::Terminal::Float,
[INFO] [stdout] 500 +                 "float" => Terminal::Float,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:501:26
[INFO] [stdout]     |
[INFO] [stdout] 501 |                 "for" => c11::Terminal::For,
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 501 -                 "for" => c11::Terminal::For,
[INFO] [stdout] 501 +                 "for" => Terminal::For,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:502:27
[INFO] [stdout]     |
[INFO] [stdout] 502 |                 "goto" => c11::Terminal::Goto,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 502 -                 "goto" => c11::Terminal::Goto,
[INFO] [stdout] 502 +                 "goto" => Terminal::Goto,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:503:25
[INFO] [stdout]     |
[INFO] [stdout] 503 |                 "if" => c11::Terminal::If,
[INFO] [stdout]     |                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 503 -                 "if" => c11::Terminal::If,
[INFO] [stdout] 503 +                 "if" => Terminal::If,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:504:29
[INFO] [stdout]     |
[INFO] [stdout] 504 |                 "inline" => c11::Terminal::Inline,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 504 -                 "inline" => c11::Terminal::Inline,
[INFO] [stdout] 504 +                 "inline" => Terminal::Inline,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:505:26
[INFO] [stdout]     |
[INFO] [stdout] 505 |                 "int" => c11::Terminal::Int,
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 505 -                 "int" => c11::Terminal::Int,
[INFO] [stdout] 505 +                 "int" => Terminal::Int,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:506:27
[INFO] [stdout]     |
[INFO] [stdout] 506 |                 "long" => c11::Terminal::Long,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 506 -                 "long" => c11::Terminal::Long,
[INFO] [stdout] 506 +                 "long" => Terminal::Long,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:507:31
[INFO] [stdout]     |
[INFO] [stdout] 507 |                 "register" => c11::Terminal::Register,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 507 -                 "register" => c11::Terminal::Register,
[INFO] [stdout] 507 +                 "register" => Terminal::Register,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:508:31
[INFO] [stdout]     |
[INFO] [stdout] 508 |                 "restrict" => c11::Terminal::Restrict,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 508 -                 "restrict" => c11::Terminal::Restrict,
[INFO] [stdout] 508 +                 "restrict" => Terminal::Restrict,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:509:29
[INFO] [stdout]     |
[INFO] [stdout] 509 |                 "return" => c11::Terminal::Return,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 509 -                 "return" => c11::Terminal::Return,
[INFO] [stdout] 509 +                 "return" => Terminal::Return,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:510:28
[INFO] [stdout]     |
[INFO] [stdout] 510 |                 "short" => c11::Terminal::Short,
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 510 -                 "short" => c11::Terminal::Short,
[INFO] [stdout] 510 +                 "short" => Terminal::Short,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:511:29
[INFO] [stdout]     |
[INFO] [stdout] 511 |                 "signed" => c11::Terminal::Signed,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 511 -                 "signed" => c11::Terminal::Signed,
[INFO] [stdout] 511 +                 "signed" => Terminal::Signed,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:512:29
[INFO] [stdout]     |
[INFO] [stdout] 512 |                 "sizeof" => c11::Terminal::Sizeof,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 512 -                 "sizeof" => c11::Terminal::Sizeof,
[INFO] [stdout] 512 +                 "sizeof" => Terminal::Sizeof,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:513:29
[INFO] [stdout]     |
[INFO] [stdout] 513 |                 "static" => c11::Terminal::Static,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 513 -                 "static" => c11::Terminal::Static,
[INFO] [stdout] 513 +                 "static" => Terminal::Static,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:514:29
[INFO] [stdout]     |
[INFO] [stdout] 514 |                 "struct" => c11::Terminal::Struct,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 514 -                 "struct" => c11::Terminal::Struct,
[INFO] [stdout] 514 +                 "struct" => Terminal::Struct,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:515:29
[INFO] [stdout]     |
[INFO] [stdout] 515 |                 "switch" => c11::Terminal::Switch,
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 515 -                 "switch" => c11::Terminal::Switch,
[INFO] [stdout] 515 +                 "switch" => Terminal::Switch,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:516:30
[INFO] [stdout]     |
[INFO] [stdout] 516 |                 "typedef" => c11::Terminal::Typedef,
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 516 -                 "typedef" => c11::Terminal::Typedef,
[INFO] [stdout] 516 +                 "typedef" => Terminal::Typedef,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:517:28
[INFO] [stdout]     |
[INFO] [stdout] 517 |                 "union" => c11::Terminal::Union,
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 517 -                 "union" => c11::Terminal::Union,
[INFO] [stdout] 517 +                 "union" => Terminal::Union,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:518:31
[INFO] [stdout]     |
[INFO] [stdout] 518 |                 "unsigned" => c11::Terminal::Unsigned,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 518 -                 "unsigned" => c11::Terminal::Unsigned,
[INFO] [stdout] 518 +                 "unsigned" => Terminal::Unsigned,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:519:27
[INFO] [stdout]     |
[INFO] [stdout] 519 |                 "void" => c11::Terminal::Void,
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 519 -                 "void" => c11::Terminal::Void,
[INFO] [stdout] 519 +                 "void" => Terminal::Void,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:520:31
[INFO] [stdout]     |
[INFO] [stdout] 520 |                 "volatile" => c11::Terminal::Volatile,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 520 -                 "volatile" => c11::Terminal::Volatile,
[INFO] [stdout] 520 +                 "volatile" => Terminal::Volatile,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:521:28
[INFO] [stdout]     |
[INFO] [stdout] 521 |                 "while" => c11::Terminal::While,
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 521 -                 "while" => c11::Terminal::While,
[INFO] [stdout] 521 +                 "while" => Terminal::While,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:523:31
[INFO] [stdout]     |
[INFO] [stdout] 523 |                 "_Alignas" => c11::Terminal::Alignas,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 523 -                 "_Alignas" => c11::Terminal::Alignas,
[INFO] [stdout] 523 +                 "_Alignas" => Terminal::Alignas,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:524:31
[INFO] [stdout]     |
[INFO] [stdout] 524 |                 "_Alignof" => c11::Terminal::Alignof,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 524 -                 "_Alignof" => c11::Terminal::Alignof,
[INFO] [stdout] 524 +                 "_Alignof" => Terminal::Alignof,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:525:30
[INFO] [stdout]     |
[INFO] [stdout] 525 |                 "_Atomic" => c11::Terminal::Atomic,
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 525 -                 "_Atomic" => c11::Terminal::Atomic,
[INFO] [stdout] 525 +                 "_Atomic" => Terminal::Atomic,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:526:28
[INFO] [stdout]     |
[INFO] [stdout] 526 |                 "_Bool" => c11::Terminal::Bool,
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 526 -                 "_Bool" => c11::Terminal::Bool,
[INFO] [stdout] 526 +                 "_Bool" => Terminal::Bool,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:527:31
[INFO] [stdout]     |
[INFO] [stdout] 527 |                 "_Complex" => c11::Terminal::Complex,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 527 -                 "_Complex" => c11::Terminal::Complex,
[INFO] [stdout] 527 +                 "_Complex" => Terminal::Complex,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:528:31
[INFO] [stdout]     |
[INFO] [stdout] 528 |                 "_Generic" => c11::Terminal::Generic,
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 528 -                 "_Generic" => c11::Terminal::Generic,
[INFO] [stdout] 528 +                 "_Generic" => Terminal::Generic,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:529:33
[INFO] [stdout]     |
[INFO] [stdout] 529 |                 "_Imaginary" => c11::Terminal::Imaginary,
[INFO] [stdout]     |                                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 529 -                 "_Imaginary" => c11::Terminal::Imaginary,
[INFO] [stdout] 529 +                 "_Imaginary" => Terminal::Imaginary,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:530:32
[INFO] [stdout]     |
[INFO] [stdout] 530 |                 "_Noreturn" => c11::Terminal::Noreturn,
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 530 -                 "_Noreturn" => c11::Terminal::Noreturn,
[INFO] [stdout] 530 +                 "_Noreturn" => Terminal::Noreturn,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:531:37
[INFO] [stdout]     |
[INFO] [stdout] 531 |                 "_Static_assert" => c11::Terminal::StaticAssert,
[INFO] [stdout]     |                                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 531 -                 "_Static_assert" => c11::Terminal::StaticAssert,
[INFO] [stdout] 531 +                 "_Static_assert" => Terminal::StaticAssert,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:532:36
[INFO] [stdout]     |
[INFO] [stdout] 532 |                 "_Thread_local" => c11::Terminal::ThreadLocal,
[INFO] [stdout]     |                                    ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 532 -                 "_Thread_local" => c11::Terminal::ThreadLocal,
[INFO] [stdout] 532 +                 "_Thread_local" => Terminal::ThreadLocal,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:536:21
[INFO] [stdout]     |
[INFO] [stdout] 536 |                     c11::Terminal::Name(s.to_string())
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 536 -                     c11::Terminal::Name(s.to_string())
[INFO] [stdout] 536 +                     Terminal::Name(s.to_string())
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:544:24
[INFO] [stdout]     |
[INFO] [stdout] 544 |             return ok!(c11::Terminal::Constant(String::new()));
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 544 -             return ok!(c11::Terminal::Constant(String::new()));
[INFO] [stdout] 544 +             return ok!(Terminal::Constant(String::new()));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:550:24
[INFO] [stdout]     |
[INFO] [stdout] 550 |             return ok!(c11::Terminal::StringLiteral(String::new()));
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 550 -             return ok!(c11::Terminal::StringLiteral(String::new()));
[INFO] [stdout] 550 +             return ok!(Terminal::StringLiteral(String::new()));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:556:24
[INFO] [stdout]     |
[INFO] [stdout] 556 |             return ok!(c11::Terminal::Constant(String::new()));
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 556 -             return ok!(c11::Terminal::Constant(String::new()));
[INFO] [stdout] 556 +             return ok!(Terminal::Constant(String::new()));
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:564:32
[INFO] [stdout]     |
[INFO] [stdout] 564 |                     return ok!(c11::Terminal::Lparen);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 564 -                     return ok!(c11::Terminal::Lparen);
[INFO] [stdout] 564 +                     return ok!(Terminal::Lparen);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:568:32
[INFO] [stdout]     |
[INFO] [stdout] 568 |                     return ok!(c11::Terminal::Rparen);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 568 -                     return ok!(c11::Terminal::Rparen);
[INFO] [stdout] 568 +                     return ok!(Terminal::Rparen);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:572:32
[INFO] [stdout]     |
[INFO] [stdout] 572 |                     return ok!(c11::Terminal::Lbrace);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 572 -                     return ok!(c11::Terminal::Lbrace);
[INFO] [stdout] 572 +                     return ok!(Terminal::Lbrace);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:576:32
[INFO] [stdout]     |
[INFO] [stdout] 576 |                     return ok!(c11::Terminal::Rbrace);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 576 -                     return ok!(c11::Terminal::Rbrace);
[INFO] [stdout] 576 +                     return ok!(Terminal::Rbrace);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:580:32
[INFO] [stdout]     |
[INFO] [stdout] 580 |                     return ok!(c11::Terminal::Lbrack);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 580 -                     return ok!(c11::Terminal::Lbrack);
[INFO] [stdout] 580 +                     return ok!(Terminal::Lbrack);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:584:32
[INFO] [stdout]     |
[INFO] [stdout] 584 |                     return ok!(c11::Terminal::Rbrack);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 584 -                     return ok!(c11::Terminal::Rbrack);
[INFO] [stdout] 584 +                     return ok!(Terminal::Rbrack);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:588:32
[INFO] [stdout]     |
[INFO] [stdout] 588 |                     return ok!(c11::Terminal::Semicolon);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 588 -                     return ok!(c11::Terminal::Semicolon);
[INFO] [stdout] 588 +                     return ok!(Terminal::Semicolon);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:592:32
[INFO] [stdout]     |
[INFO] [stdout] 592 |                     return ok!(c11::Terminal::Comma);
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 592 -                     return ok!(c11::Terminal::Comma);
[INFO] [stdout] 592 +                     return ok!(Terminal::Comma);
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:632:22
[INFO] [stdout]     |
[INFO] [stdout] 632 |                 0 => c11::Terminal::Ellipsis,
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 632 -                 0 => c11::Terminal::Ellipsis,
[INFO] [stdout] 632 +                 0 => Terminal::Ellipsis,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:633:22
[INFO] [stdout]     |
[INFO] [stdout] 633 |                 3 => c11::Terminal::Ptr,
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 633 -                 3 => c11::Terminal::Ptr,
[INFO] [stdout] 633 +                 3 => Terminal::Ptr,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:634:22
[INFO] [stdout]     |
[INFO] [stdout] 634 |                 4 => c11::Terminal::Inc,
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 634 -                 4 => c11::Terminal::Inc,
[INFO] [stdout] 634 +                 4 => Terminal::Inc,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:635:22
[INFO] [stdout]     |
[INFO] [stdout] 635 |                 5 => c11::Terminal::Dec,
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 635 -                 5 => c11::Terminal::Dec,
[INFO] [stdout] 635 +                 5 => Terminal::Dec,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:638:21
[INFO] [stdout]     |
[INFO] [stdout] 638 |                     c11::Terminal::Binop(p, p)
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 638 -                     c11::Terminal::Binop(p, p)
[INFO] [stdout] 638 +                     Terminal::Binop(p, p)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:647:24
[INFO] [stdout]     |
[INFO] [stdout] 647 |                 ':' => c11::Terminal::Colon,
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 647 -                 ':' => c11::Terminal::Colon,
[INFO] [stdout] 647 +                 ':' => Terminal::Colon,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:648:24
[INFO] [stdout]     |
[INFO] [stdout] 648 |                 '.' => c11::Terminal::Dot,
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 648 -                 '.' => c11::Terminal::Dot,
[INFO] [stdout] 648 +                 '.' => Terminal::Dot,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:649:24
[INFO] [stdout]     |
[INFO] [stdout] 649 |                 '~' => c11::Terminal::Tilde,
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 649 -                 '~' => c11::Terminal::Tilde,
[INFO] [stdout] 649 +                 '~' => Terminal::Tilde,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:650:24
[INFO] [stdout]     |
[INFO] [stdout] 650 |                 '!' => c11::Terminal::Bang,
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 650 -                 '!' => c11::Terminal::Bang,
[INFO] [stdout] 650 +                 '!' => Terminal::Bang,
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:651:24
[INFO] [stdout]     |
[INFO] [stdout] 651 |                 '=' => c11::Terminal::Eq(Precedence::Right(1)),
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 651 -                 '=' => c11::Terminal::Eq(Precedence::Right(1)),
[INFO] [stdout] 651 +                 '=' => Terminal::Eq(Precedence::Right(1)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:652:24
[INFO] [stdout]     |
[INFO] [stdout] 652 |                 '?' => c11::Terminal::Question(Precedence::Right(2)),
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 652 -                 '?' => c11::Terminal::Question(Precedence::Right(2)),
[INFO] [stdout] 652 +                 '?' => Terminal::Question(Precedence::Right(2)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:655:21
[INFO] [stdout]     |
[INFO] [stdout] 655 |                     c11::Terminal::Binop(p, p)
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 655 -                     c11::Terminal::Binop(p, p)
[INFO] [stdout] 655 +                     Terminal::Binop(p, p)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:659:21
[INFO] [stdout]     |
[INFO] [stdout] 659 |                     c11::Terminal::Binop(p, p)
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 659 -                     c11::Terminal::Binop(p, p)
[INFO] [stdout] 659 +                     Terminal::Binop(p, p)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:661:24
[INFO] [stdout]     |
[INFO] [stdout] 661 |                 '&' => c11::Terminal::Amp(Precedence::Left(7)),
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 661 -                 '&' => c11::Terminal::Amp(Precedence::Left(7)),
[INFO] [stdout] 661 +                 '&' => Terminal::Amp(Precedence::Left(7)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:664:21
[INFO] [stdout]     |
[INFO] [stdout] 664 |                     c11::Terminal::Binop(p, p)
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 664 -                     c11::Terminal::Binop(p, p)
[INFO] [stdout] 664 +                     Terminal::Binop(p, p)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:668:21
[INFO] [stdout]     |
[INFO] [stdout] 668 |                     c11::Terminal::Binop(p, p)
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 668 -                     c11::Terminal::Binop(p, p)
[INFO] [stdout] 668 +                     Terminal::Binop(p, p)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:670:24
[INFO] [stdout]     |
[INFO] [stdout] 670 |                 '+' => c11::Terminal::Plus(Precedence::Left(11)),
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 670 -                 '+' => c11::Terminal::Plus(Precedence::Left(11)),
[INFO] [stdout] 670 +                 '+' => Terminal::Plus(Precedence::Left(11)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:671:24
[INFO] [stdout]     |
[INFO] [stdout] 671 |                 '-' => c11::Terminal::Minus(Precedence::Left(11)),
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 671 -                 '-' => c11::Terminal::Minus(Precedence::Left(11)),
[INFO] [stdout] 671 +                 '-' => Terminal::Minus(Precedence::Left(11)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:672:24
[INFO] [stdout]     |
[INFO] [stdout] 672 |                 '*' => c11::Terminal::Star(Precedence::Left(12)),
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 672 -                 '*' => c11::Terminal::Star(Precedence::Left(12)),
[INFO] [stdout] 672 +                 '*' => Terminal::Star(Precedence::Left(12)),
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:675:21
[INFO] [stdout]     |
[INFO] [stdout] 675 |                     c11::Terminal::Binop(p, p)
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 675 -                     c11::Terminal::Binop(p, p)
[INFO] [stdout] 675 +                     Terminal::Binop(p, p)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:679:21
[INFO] [stdout]     |
[INFO] [stdout] 679 |                     c11::Terminal::Binop(p, p)
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing this enum
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Terminal;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Terminal`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 679 -                     c11::Terminal::Binop(p, p)
[INFO] [stdout] 679 +                     Terminal::Binop(p, p)
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:765:22
[INFO] [stdout]     |
[INFO] [stdout] 765 |     let mut parser = c11::Parser::<CActions>::new();
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 765 -     let mut parser = c11::Parser::<CActions>::new();
[INFO] [stdout] 765 +     let mut parser = Parser::<CActions>::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:823:22
[INFO] [stdout]     |
[INFO] [stdout] 823 |     let mut parser = c11::Parser::<CActions>::new();
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 823 -     let mut parser = c11::Parser::<CActions>::new();
[INFO] [stdout] 823 +     let mut parser = Parser::<CActions>::new();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:941:23
[INFO] [stdout]     |
[INFO] [stdout] 941 |             let ctx = c11::Parser::<CActions>::error_info();
[INFO] [stdout]     |                       ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] help: consider importing one of these structs
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::Parser;
[INFO] [stdout]     |
[INFO] [stdout]   7 + use gazelle::regex::Parser;
[INFO] [stdout]     |
[INFO] [stdout] help: if you import `Parser`, refer to it directly
[INFO] [stdout]     |
[INFO] [stdout] 941 -             let ctx = c11::Parser::<CActions>::error_info();
[INFO] [stdout] 941 +             let ctx = Parser::<CActions>::error_info();
[INFO] [stdout]     |
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:33:24
[INFO] [stdout]    |
[INFO] [stdout] 33 | fn declarator_name(d: &c11::Declarator<CActions>) -> &str {
[INFO] [stdout]    |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:41:32
[INFO] [stdout]    |
[INFO] [stdout] 41 | fn direct_declarator_name(dd: &c11::DirectDeclarator<CActions>) -> &str {
[INFO] [stdout]    |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:55:38
[INFO] [stdout]    |
[INFO] [stdout] 55 | fn declarator_param_ctx_take(d: &mut c11::Declarator<CActions>) -> Option<Context> {
[INFO] [stdout]    |                                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]   --> examples/c11/main.rs:61:31
[INFO] [stdout]    |
[INFO] [stdout] 61 | fn dd_param_ctx_take(dd: &mut c11::DirectDeclarator<CActions>) -> Option<Context> {
[INFO] [stdout]    |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]    |
[INFO] [stdout]    = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:156:6
[INFO] [stdout]     |
[INFO] [stdout] 156 | impl c11::Types for CActions {
[INFO] [stdout]     |      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:161:21
[INFO] [stdout]     |
[INFO] [stdout] 161 |     type BinaryOp = c11::BinaryOp<Self>;
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:167:41
[INFO] [stdout]     |
[INFO] [stdout] 167 |     type ScopedCompoundStatement = Node<c11::ScopedCompoundStatement<Self>>;
[INFO] [stdout]     |                                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:168:42
[INFO] [stdout]     |
[INFO] [stdout] 168 |     type ScopedIterationStatement = Node<c11::ScopedIterationStatement<Self>>;
[INFO] [stdout]     |                                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:169:41
[INFO] [stdout]     |
[INFO] [stdout] 169 |     type ScopedParameterTypeList = Node<c11::ScopedParameterTypeList<Self>>;
[INFO] [stdout]     |                                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:170:42
[INFO] [stdout]     |
[INFO] [stdout] 170 |     type ScopedSelectionStatement = Node<c11::ScopedSelectionStatement<Self>>;
[INFO] [stdout]     |                                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:171:33
[INFO] [stdout]     |
[INFO] [stdout] 171 |     type ScopedStatement = Node<c11::ScopedStatement<Self>>;
[INFO] [stdout]     |                                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:172:35
[INFO] [stdout]     |
[INFO] [stdout] 172 |     type DeclaratorVarname = Node<c11::DeclaratorVarname<Self>>;
[INFO] [stdout]     |                                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:173:39
[INFO] [stdout]     |
[INFO] [stdout] 173 |     type DeclaratorTypedefname = Node<c11::DeclaratorTypedefname<Self>>;
[INFO] [stdout]     |                                       ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:174:28
[INFO] [stdout]     |
[INFO] [stdout] 174 |     type Enumerator = Node<c11::Enumerator<Self>>;
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:175:42
[INFO] [stdout]     |
[INFO] [stdout] 175 |     type FunctionDefinition1 = (Context, c11::FunctionDefinition1<Self>);
[INFO] [stdout]     |                                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:176:36
[INFO] [stdout]     |
[INFO] [stdout] 176 |     type FunctionDefinition = Node<c11::FunctionDefinition<Self>>;
[INFO] [stdout]     |                                    ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:178:31
[INFO] [stdout]     |
[INFO] [stdout] 178 |     type ListAnonymous0 = Box<c11::ListAnonymous0<Self>>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:179:31
[INFO] [stdout]     |
[INFO] [stdout] 179 |     type ListAnonymous1 = Box<c11::ListAnonymous1<Self>>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:180:41
[INFO] [stdout]     |
[INFO] [stdout] 180 |     type ListDeclarationSpecifier = Box<c11::ListDeclarationSpecifier<Self>>;
[INFO] [stdout]     |                                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:181:51
[INFO] [stdout]     |
[INFO] [stdout] 181 |     type ListEq1TypedefDeclarationSpecifier = Box<c11::ListEq1TypedefDeclarationSpecifier<Self>>;
[INFO] [stdout]     |                                                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:183:13
[INFO] [stdout]     |
[INFO] [stdout] 183 |         Box<c11::ListEq1TypeSpecifierUniqueAnonymous0<Self>>;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:185:13
[INFO] [stdout]     |
[INFO] [stdout] 185 |         Box<c11::ListEq1TypeSpecifierUniqueDeclarationSpecifier<Self>>;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:187:13
[INFO] [stdout]     |
[INFO] [stdout] 187 |         Box<c11::ListGe1TypeSpecifierNonuniqueAnonymous1<Self>>;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:189:13
[INFO] [stdout]     |
[INFO] [stdout] 189 |         Box<c11::ListGe1TypeSpecifierNonuniqueDeclarationSpecifier<Self>>;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:191:13
[INFO] [stdout]     |
[INFO] [stdout] 191 |         Box<c11::ListEq1Eq1TypedefTypeSpecifierUniqueDeclarationSpecifier<Self>>;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:193:13
[INFO] [stdout]     |
[INFO] [stdout] 193 |         Box<c11::ListEq1Ge1TypedefTypeSpecifierNonuniqueDeclarationSpecifier<Self>>;
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:195:23
[INFO] [stdout]     |
[INFO] [stdout] 195 |     type Declarator = c11::Declarator<Self>;
[INFO] [stdout]     |                       ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:196:30
[INFO] [stdout]     |
[INFO] [stdout] 196 |     type ParameterTypeList = c11::ParameterTypeList<Self>;
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:197:21
[INFO] [stdout]     |
[INFO] [stdout] 197 |     type Variadic = c11::Variadic<Self>;
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:198:28
[INFO] [stdout]     |
[INFO] [stdout] 198 |     type TypedefNameSpec = c11::TypedefNameSpec<Self>;
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:199:30
[INFO] [stdout]     |
[INFO] [stdout] 199 |     type PrimaryExpression = c11::PrimaryExpression<Self>;
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:200:29
[INFO] [stdout]     |
[INFO] [stdout] 200 |     type GenericSelection = c11::GenericSelection<Self>;
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:201:31
[INFO] [stdout]     |
[INFO] [stdout] 201 |     type GenericAssociation = c11::GenericAssociation<Self>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:202:26
[INFO] [stdout]     |
[INFO] [stdout] 202 |     type UnaryOperator = c11::UnaryOperator<Self>;
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:203:31
[INFO] [stdout]     |
[INFO] [stdout] 203 |     type ConstantExpression = c11::ConstantExpression<Self>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:204:24
[INFO] [stdout]     |
[INFO] [stdout] 204 |     type Declaration = c11::Declaration<Self>;
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:205:33
[INFO] [stdout]     |
[INFO] [stdout] 205 |     type DeclarationSpecifier = c11::DeclarationSpecifier<Self>;
[INFO] [stdout]     |                                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:206:34
[INFO] [stdout]     |
[INFO] [stdout] 206 |     type DeclarationSpecifiers = c11::DeclarationSpecifiers<Self>;
[INFO] [stdout]     |                                  ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:207:41
[INFO] [stdout]     |
[INFO] [stdout] 207 |     type DeclarationSpecifiersTypedef = c11::DeclarationSpecifiersTypedef<Self>;
[INFO] [stdout]     |                                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:208:48
[INFO] [stdout]     |
[INFO] [stdout] 208 |     type InitDeclaratorDeclaratorTypedefname = c11::InitDeclaratorDeclaratorTypedefname<Self>;
[INFO] [stdout]     |                                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:209:44
[INFO] [stdout]     |
[INFO] [stdout] 209 |     type InitDeclaratorDeclaratorVarname = c11::InitDeclaratorDeclaratorVarname<Self>;
[INFO] [stdout]     |                                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:210:34
[INFO] [stdout]     |
[INFO] [stdout] 210 |     type StorageClassSpecifier = c11::StorageClassSpecifier<Self>;
[INFO] [stdout]     |                                  ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:211:35
[INFO] [stdout]     |
[INFO] [stdout] 211 |     type TypeSpecifierNonunique = c11::TypeSpecifierNonunique<Self>;
[INFO] [stdout]     |                                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:212:32
[INFO] [stdout]     |
[INFO] [stdout] 212 |     type TypeSpecifierUnique = c11::TypeSpecifierUnique<Self>;
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:213:35
[INFO] [stdout]     |
[INFO] [stdout] 213 |     type StructOrUnionSpecifier = c11::StructOrUnionSpecifier<Self>;
[INFO] [stdout]     |                                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:214:26
[INFO] [stdout]     |
[INFO] [stdout] 214 |     type StructOrUnion = c11::StructOrUnion<Self>;
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:215:30
[INFO] [stdout]     |
[INFO] [stdout] 215 |     type StructDeclaration = c11::StructDeclaration<Self>;
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:216:35
[INFO] [stdout]     |
[INFO] [stdout] 216 |     type SpecifierQualifierList = c11::SpecifierQualifierList<Self>;
[INFO] [stdout]     |                                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:217:29
[INFO] [stdout]     |
[INFO] [stdout] 217 |     type StructDeclarator = c11::StructDeclarator<Self>;
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:218:26
[INFO] [stdout]     |
[INFO] [stdout] 218 |     type EnumSpecifier = c11::EnumSpecifier<Self>;
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:219:32
[INFO] [stdout]     |
[INFO] [stdout] 219 |     type AtomicTypeSpecifier = c11::AtomicTypeSpecifier<Self>;
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:220:26
[INFO] [stdout]     |
[INFO] [stdout] 220 |     type TypeQualifier = c11::TypeQualifier<Self>;
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:221:30
[INFO] [stdout]     |
[INFO] [stdout] 221 |     type FunctionSpecifier = c11::FunctionSpecifier<Self>;
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:222:31
[INFO] [stdout]     |
[INFO] [stdout] 222 |     type AlignmentSpecifier = c11::AlignmentSpecifier<Self>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:223:33
[INFO] [stdout]     |
[INFO] [stdout] 223 |     type ParameterDeclaration = c11::ParameterDeclaration<Self>;
[INFO] [stdout]     |                                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:224:21
[INFO] [stdout]     |
[INFO] [stdout] 224 |     type TypeName = c11::TypeName<Self>;
[INFO] [stdout]     |                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:225:31
[INFO] [stdout]     |
[INFO] [stdout] 225 |     type AbstractDeclarator = c11::AbstractDeclarator<Self>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:226:25
[INFO] [stdout]     |
[INFO] [stdout] 226 |     type CInitializer = c11::CInitializer<Self>;
[INFO] [stdout]     |                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:227:24
[INFO] [stdout]     |
[INFO] [stdout] 227 |     type Designation = c11::Designation<Self>;
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:228:23
[INFO] [stdout]     |
[INFO] [stdout] 228 |     type Designator = c11::Designator<Self>;
[INFO] [stdout]     |                       ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:229:36
[INFO] [stdout]     |
[INFO] [stdout] 229 |     type StaticAssertDeclaration = c11::StaticAssertDeclaration<Self>;
[INFO] [stdout]     |                                    ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:230:29
[INFO] [stdout]     |
[INFO] [stdout] 230 |     type LabeledStatement = c11::LabeledStatement<Self>;
[INFO] [stdout]     |                             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:231:30
[INFO] [stdout]     |
[INFO] [stdout] 231 |     type CompoundStatement = c11::CompoundStatement<Self>;
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:232:22
[INFO] [stdout]     |
[INFO] [stdout] 232 |     type BlockItem = c11::BlockItem<Self>;
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:233:32
[INFO] [stdout]     |
[INFO] [stdout] 233 |     type ExpressionStatement = c11::ExpressionStatement<Self>;
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:234:31
[INFO] [stdout]     |
[INFO] [stdout] 234 |     type SelectionStatement = c11::SelectionStatement<Self>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:235:31
[INFO] [stdout]     |
[INFO] [stdout] 235 |     type IterationStatement = c11::IterationStatement<Self>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:236:26
[INFO] [stdout]     |
[INFO] [stdout] 236 |     type JumpStatement = c11::JumpStatement<Self>;
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:237:32
[INFO] [stdout]     |
[INFO] [stdout] 237 |     type ExternalDeclaration = c11::ExternalDeclaration<Self>;
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:239:33
[INFO] [stdout]     |
[INFO] [stdout] 239 |     type DirectDeclarator = Box<c11::DirectDeclarator<Self>>;
[INFO] [stdout]     |                                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:240:34
[INFO] [stdout]     |
[INFO] [stdout] 240 |     type PostfixExpression = Box<c11::PostfixExpression<Self>>;
[INFO] [stdout]     |                                  ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:241:35
[INFO] [stdout]     |
[INFO] [stdout] 241 |     type ArgumentExpressionList = c11::ArgumentExpressionList<Self>;
[INFO] [stdout]     |                                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:242:32
[INFO] [stdout]     |
[INFO] [stdout] 242 |     type UnaryExpression = Box<c11::UnaryExpression<Self>>;
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:243:31
[INFO] [stdout]     |
[INFO] [stdout] 243 |     type CastExpression = Box<c11::CastExpression<Self>>;
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:244:37
[INFO] [stdout]     |
[INFO] [stdout] 244 |     type AssignmentExpression = Box<c11::AssignmentExpression<Self>>;
[INFO] [stdout]     |                                     ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:245:27
[INFO] [stdout]     |
[INFO] [stdout] 245 |     type Expression = Box<c11::Expression<Self>>;
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:246:38
[INFO] [stdout]     |
[INFO] [stdout] 246 |     type InitDeclaratorListVarname = c11::InitDeclaratorListVarname<Self>;
[INFO] [stdout]     |                                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:247:38
[INFO] [stdout]     |
[INFO] [stdout] 247 |     type InitDeclaratorListTypedef = c11::InitDeclaratorListTypedef<Self>;
[INFO] [stdout]     |                                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:248:33
[INFO] [stdout]     |
[INFO] [stdout] 248 |     type StructDeclaratorList = c11::StructDeclaratorList<Self>;
[INFO] [stdout]     |                                 ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:249:24
[INFO] [stdout]     |
[INFO] [stdout] 249 |     type Pointer = Box<c11::Pointer<Self>>;
[INFO] [stdout]     |                        ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:250:30
[INFO] [stdout]     |
[INFO] [stdout] 250 |     type TypeQualifierList = c11::TypeQualifierList<Self>;
[INFO] [stdout]     |                              ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:251:27
[INFO] [stdout]     |
[INFO] [stdout] 251 |     type IdentifierList = c11::IdentifierList<Self>;
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:252:41
[INFO] [stdout]     |
[INFO] [stdout] 252 |     type DirectAbstractDeclarator = Box<c11::DirectAbstractDeclarator<Self>>;
[INFO] [stdout]     |                                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:253:32
[INFO] [stdout]     |
[INFO] [stdout] 253 |     type InitializerList = Box<c11::InitializerList<Self>>;
[INFO] [stdout]     |                                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:254:26
[INFO] [stdout]     |
[INFO] [stdout] 254 |     type Statement = Box<c11::Statement<Self>>;
[INFO] [stdout]     |                          ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:255:36
[INFO] [stdout]     |
[INFO] [stdout] 255 |     type TranslationUnitFile = Box<c11::TranslationUnitFile<Self>>;
[INFO] [stdout]     |                                    ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:260:13
[INFO] [stdout]     |
[INFO] [stdout] 260 | impl Action<c11::TypedefName<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:261:31
[INFO] [stdout]     |
[INFO] [stdout] 261 |     fn build(&mut self, node: c11::TypedefName<Self>) -> Result<String, Self::Error> {
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:267:13
[INFO] [stdout]     |
[INFO] [stdout] 267 | impl Action<c11::VarName<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:268:31
[INFO] [stdout]     |
[INFO] [stdout] 268 |     fn build(&mut self, node: c11::VarName<Self>) -> Result<String, Self::Error> {
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:274:13
[INFO] [stdout]     |
[INFO] [stdout] 274 | impl Action<c11::GeneralIdentifier<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:275:31
[INFO] [stdout]     |
[INFO] [stdout] 275 |     fn build(&mut self, node: c11::GeneralIdentifier<Self>) -> Result<String, Self::Error> {
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:283:13
[INFO] [stdout]     |
[INFO] [stdout] 283 | impl Action<c11::EnumerationConstant<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:284:31
[INFO] [stdout]     |
[INFO] [stdout] 284 |     fn build(&mut self, node: c11::EnumerationConstant<Self>) -> Result<String, Self::Error> {
[INFO] [stdout]     |                               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:290:13
[INFO] [stdout]     |
[INFO] [stdout] 290 | impl Action<c11::SaveContext<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:291:28
[INFO] [stdout]     |
[INFO] [stdout] 291 |     fn build(&mut self, _: c11::SaveContext<Self>) -> Result<Context, Self::Error> {
[INFO] [stdout]     |                            ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:296:13
[INFO] [stdout]     |
[INFO] [stdout] 296 | impl Action<c11::ScopedCompoundStatement<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:299:19
[INFO] [stdout]     |
[INFO] [stdout] 299 |         mut node: c11::ScopedCompoundStatement<Self>,
[INFO] [stdout]     |                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:300:22
[INFO] [stdout]     |
[INFO] [stdout] 300 |     ) -> Result<Node<c11::ScopedCompoundStatement<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:307:13
[INFO] [stdout]     |
[INFO] [stdout] 307 | impl Action<c11::ScopedIterationStatement<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:310:19
[INFO] [stdout]     |
[INFO] [stdout] 310 |         mut node: c11::ScopedIterationStatement<Self>,
[INFO] [stdout]     |                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:311:22
[INFO] [stdout]     |
[INFO] [stdout] 311 |     ) -> Result<Node<c11::ScopedIterationStatement<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:318:13
[INFO] [stdout]     |
[INFO] [stdout] 318 | impl Action<c11::ScopedSelectionStatement<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:321:19
[INFO] [stdout]     |
[INFO] [stdout] 321 |         mut node: c11::ScopedSelectionStatement<Self>,
[INFO] [stdout]     |                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:322:22
[INFO] [stdout]     |
[INFO] [stdout] 322 |     ) -> Result<Node<c11::ScopedSelectionStatement<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:329:13
[INFO] [stdout]     |
[INFO] [stdout] 329 | impl Action<c11::ScopedStatement<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:332:19
[INFO] [stdout]     |
[INFO] [stdout] 332 |         mut node: c11::ScopedStatement<Self>,
[INFO] [stdout]     |                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:333:22
[INFO] [stdout]     |
[INFO] [stdout] 333 |     ) -> Result<Node<c11::ScopedStatement<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:340:13
[INFO] [stdout]     |
[INFO] [stdout] 340 | impl Action<c11::ScopedParameterTypeList<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:343:19
[INFO] [stdout]     |
[INFO] [stdout] 343 |         mut node: c11::ScopedParameterTypeList<Self>,
[INFO] [stdout]     |                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:344:22
[INFO] [stdout]     |
[INFO] [stdout] 344 |     ) -> Result<Node<c11::ScopedParameterTypeList<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:351:13
[INFO] [stdout]     |
[INFO] [stdout] 351 | impl Action<c11::DeclaratorVarname<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:354:15
[INFO] [stdout]     |
[INFO] [stdout] 354 |         node: c11::DeclaratorVarname<Self>,
[INFO] [stdout]     |               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:355:22
[INFO] [stdout]     |
[INFO] [stdout] 355 |     ) -> Result<Node<c11::DeclaratorVarname<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:362:13
[INFO] [stdout]     |
[INFO] [stdout] 362 | impl Action<c11::DeclaratorTypedefname<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:365:15
[INFO] [stdout]     |
[INFO] [stdout] 365 |         node: c11::DeclaratorTypedefname<Self>,
[INFO] [stdout]     |               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:366:22
[INFO] [stdout]     |
[INFO] [stdout] 366 |     ) -> Result<Node<c11::DeclaratorTypedefname<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:373:13
[INFO] [stdout]     |
[INFO] [stdout] 373 | impl Action<c11::FunctionDefinition1<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:376:19
[INFO] [stdout]     |
[INFO] [stdout] 376 |         mut node: c11::FunctionDefinition1<Self>,
[INFO] [stdout]     |                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:377:27
[INFO] [stdout]     |
[INFO] [stdout] 377 |     ) -> Result<(Context, c11::FunctionDefinition1<Self>), Self::Error> {
[INFO] [stdout]     |                           ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:390:13
[INFO] [stdout]     |
[INFO] [stdout] 390 | impl Action<c11::FunctionDefinition<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:393:19
[INFO] [stdout]     |
[INFO] [stdout] 393 |         mut node: c11::FunctionDefinition<Self>,
[INFO] [stdout]     |                   ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:394:22
[INFO] [stdout]     |
[INFO] [stdout] 394 |     ) -> Result<Node<c11::FunctionDefinition<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:401:13
[INFO] [stdout]     |
[INFO] [stdout] 401 | impl Action<c11::Enumerator<Self>> for CActions {
[INFO] [stdout]     |             ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:404:15
[INFO] [stdout]     |
[INFO] [stdout] 404 |         node: c11::Enumerator<Self>,
[INFO] [stdout]     |               ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:405:22
[INFO] [stdout]     |
[INFO] [stdout] 405 |     ) -> Result<Node<c11::Enumerator<Self>>, Self::Error> {
[INFO] [stdout]     |                      ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:442:25
[INFO] [stdout]     |
[INFO] [stdout] 442 |     ) -> Result<Option<(c11::Terminal<CActions>, Span)>, String> {
[INFO] [stdout]     |                         ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] error[E0433]: cannot find module or crate `c11` in this scope
[INFO] [stdout]    --> examples/c11/main.rs:693:16
[INFO] [stdout]     |
[INFO] [stdout] 693 | type Cst = Box<c11::TranslationUnitFile<CActions>>;
[INFO] [stdout]     |                ^^^ use of unresolved module or unlinked crate `c11`
[INFO] [stdout]     |
[INFO] [stdout]     = help: if you wanted to use a crate named `c11`, use `cargo add c11` to add it to your `Cargo.toml`
[INFO] [stdout] 
[INFO] [stdout] 
[INFO] [stdout] Some errors have detailed explanations: E0432, E0433.
[INFO] [stdout] 
[INFO] [stdout] For more information about an error, try `rustc --explain E0432`.
[INFO] [stdout] 
[INFO] [stderr] error: could not compile `gazelle-parser` (example "c11") due to 252 previous errors
[INFO] running `Command { std: "docker" "inspect" "3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65", kill_on_drop: false }`
[INFO] running `Command { std: "docker" "rm" "-f" "3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65", kill_on_drop: false }`
[INFO] [stdout] 3352d853caa3b5acd315cb7ef04802730ed688864efed7dfdaf8d2ba1c387e65
